I\'m following the official documentation in order to serve static files but I\'m recieving error 404 in the development console. I\'m using \'django.contrib.staticfiles\', so s
SOLUTION: I was missing this line in my settings.py
STATICFILES_DIRS = (os.path.join(os.path.dirname(__file__),'static'),)
It looks it's mandatory, same as TEMPLATE_DIRS.