django-html5-boilerplate
django-html5-boilerplate copied to clipboard
load staticfiles is depricated
https://github.com/mattsnider/django-html5-boilerplate/blob/09140a229626a622cba1b5049539a0f1825f01d8/dh5bp/templates/dh5bp/base.html#L1
For modern versions this should be:
{% load staticfiles %}
Fixing this and removing the {% load url from future %} in the created templates as mentioned by jillson seems to be all that is needed for modern django versions.
Awesome project, thank you for making it available.
+1