Django will not serve my static files. Here\'s the error returned:
[13/Jun/2014 06:12:09] \"GET /refund/ HTTP/1.1\" 200 2927 [13/Jun/2014 0
Change STATIC_ROOT of settings.py, I hope it will work. I face the same problem....
STATIC_URL = '/static/' STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static') ] MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(BASE_DIR, 'media')