I'm trying to use the Django admin (on the dev server that comes with Django) for the latest stable version 1.2.3 on windows with Python 2.6. Functionally it works great. For some reason the styles do not render for the site admin page and my application admin page. The respective URLS are: http://127.0.0.1:8000/admin/ and http://127.0.0.1:8000/admin/asi/ where "asi" is my application. All the other admin pages displaying properly: login, change pages, list pages, change password, etc. The only difference I see when I look at the source is that the pages in question use dashboard.css instead of base.css. I have tried moving the admin media directory to my project media folder and serve it up myself but that did not seem to fix the problem. I uninstalled Django and reinstalled using a fresh download of 1.2.3. I haven't come across anyone else having this problem either. If anyone has an idea how to fix this or can point me in the right direction to troubleshoot this, I would appreciate it. /Paul
######## Here are the media settings in my settings.py # Absolute path to the directory that holds media. # Example: "/home/media/media.lawrence.com/" MEDIA_ROOT = '' # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash if there is a path component (optional in other cases). # Examples: "http://media.lawrence.com", "http://example.com/media/" MEDIA_URL = '' # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a # trailing slash. # Examples: "http://foo.com/media/", "/media/". ADMIN_MEDIA_PREFIX = '/media/' -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.