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
It also worked for me, thanks guys !!
settings.py
MEDIA_ROOT = '/home/pi/ewspaces/ws-classic/xima/media' MEDIA_URL = '/statics/'
urls.py
if settings.DEBUG: urlpatterns += patterns('', (r'^statics/(?P.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}), )
inside templates: