I\'ve having a little issue with Django\'s staticfiles app.
I have added
\'django.contrib.staticfiles\',
to my INSTALLED_APPS and
First of all, make sure that you have static serve enabled in your urls.py FOR DEVELOPMENT ONLY.
Also, you may have an extra slash in there. If your STATIC_URL == '/static/', then
{{ STATIC_URL }}/css/style.css should be {{ STATIC_URL }}css/style.css.