CSS missing from django admin pages on development server after execution of drop database -
i have been messing around simple django 1.3 toy project using mysql, , decided change lot of models around. after doing so, needed clear database , "start afresh" used "drop database db" in mysql prompt. however, after re-running
python manage.py syncdb
which correctly populated database new tables, prompted me make superuser, etc... admin pages no longer find css files linked (base.css instance)
i did not change settings, , still using built-in server
python manage.py runserver
from googling around, seems there problem permissions, every other discussion have been able find has said problem when using apache or rather "automagical" django server.
as additional information, running ubuntu 11.04 on virtualbox virtual machine under windows 7. attempted try , switch sqlite3 in case had somehow broken mysql database, did not resolve issue.
thanks help!
try include the context processors in settings.py
Comments
Post a Comment