I\'m running Django\'s development server (runserver) on my local machine (Mac OS X) and cannot get the CSS files to load.
runserver
Here are the relevant entries
If you set DEBUG=FALSE you need to do follow steps
In your urls.py file: add this line
from django.views.static import serve url(r'^media/(?P.*)$', serve,{'document_root': settings.MEDIA_ROOT}), url(r'^static/(?P.*)$', serve,{'document_root': settings.STATIC_ROOT}),