I\'ve been messing around with the new collectstatic command and have got it working for my normal pages. That is to say, I am able to load my css at this locat
collectstatic
In settings.py Don't use tuple for the
STATICFILES_DIRS =( os.path.join(BASE_DIR, 'static'), )
you should use list,like this
STATICFILES_DIRS =[ os.path.join(BASE_DIR, 'static'), ]