I am having issues trying to get the django-debug-toolbar up and running. I have all of the necessary info added to INSTALLED_APPS
, MIDDLEWARE_CLASSES
, and my ip is in the INTERNAL_IPS
tuple. I have run the setup.py script and everything seems to load fine as I am getting no errors from django or apache.
However, nothing happens - no toolbar on any pages, has anyone else ever seen this behavior? Am I missing something obvious?
I had this same issue for awhile.
Have you tried logging into the admin panel? If the toolbar displays there, but does not display in your code, it's very likely that you are missing the opening and closing tags in your template. By default, django debug toolbar attaches to the BODY tag, though you can change this behavior if you desire. See this question: Django Debug Toolbar Only Working for Admin Section