basically i upgraded ubuntu to juanty, and with it came python2.6 so i decided to take the chance and make django work with it. i re-svn’d django into dist-packages, and made sure to properly sym-link my admin media. Note that i’m not using apache, rather just the django development server.
when i load up the admin the css seems to not take effect, when i view source it is calling the proper files and i even go ahead and load these files in the browser and they load properly.
any ideas as to what i’ve done wrong? i’m thinking it has to do with using the latest revision of django.
————-Edit——————–
to answer your questions below:
I am not running apache, i’m serving static files using django and i’ve tried loading the files from the browser and they work fine.
i did this in my settings file
ADMIN_MEDIA_PREFIX = '/static/admin_media/'
i symlinked from my static folder admin_media > /usr/lib/python2.6/dist-packages/django/contrib/admin/media/
this is really stumping me as i think i’ve done everything right.
————Edit————
heres a sample of my urls.py
(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
what i’ve recalled is that before (in ubuntu 8 & probably an older svn revision of django) i didn’t configure anyting in my settings or symlin anything from my static folder and it worked just fine with the default /media/ – is there somewhere where it is symlinked automatically for the admin?
——Edit——————-
This is most likely a bug with the svn version, as after this i tried on my windows machine and i get the same thing. the css files are linked properly but are not imported. instead when i click on them it downloads the files. permission issue anyone?
help, as the admin doesn’t look as nice without the css formating.
wow, i don’t want to come across as an answer spammer for answering my own questions but… nobody else seemed to answer the questions and i then tend to figure them out by myself. ugghh..
anways the answer to the above is simple, quite simple
since i had created the above django projects using an older version of django and not the latest svn version, you need to overwrite or delete the old admin media directory under static and the admin templates. in my case i just deleted the admini media and admin templates and voila … the admin was back!!!
can’t believe i hadn’t tought of that before.