Django Debug Toolbar Broke The Admin?
I have a little test project on which I always install and test package prior to my dev apps. Since I installed the django debug toolbar on it, I'm having the following error messa
Solution 1:
As Luca pointed out, this can be caused by an incorrect ordering of your INSTALLED_APPS
setting. 'debug_toolbar.apps.DebugToolbarConfig'
must come after'django.contrib.staticfiles'
, as shown in the docs.
Solution 2:
As stated in the django-debug-toolbar README [1], only Django up to 1.7 is supported; according to your post you are using Django 1.8, which is in early development and unstable. Simple downgrading should solve the issue.
[1] https://github.com/django-debug-toolbar/django-debug-toolbar
Post a Comment for "Django Debug Toolbar Broke The Admin?"