I\'m building a django app and I can\'t get the templates to see the CSS files... My settings.py file looks like:
MEDIA_ROOT = os.path.join(os.path.abspath(os.p
in the "development only" block in your urls.py you need to change
(r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': '/media'}),
to...
(r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),