django-debug-panel
django-debug-panel copied to clipboard
It's always blank
I followed the instructions (only using the django-debug-panel middleware) and installed the extension.
I just get a blank screen.
Exactly the same here: Django 1.6
Activated my brain: python manage.py collectstatic
And it works. :)
Same for me, Django 1.6.10, django-debug-toolbar 1.3 collectstatic didn't work for me.
Actually, mine shows up, I had to expand it
In my case
DEBUG_TOOLBAR_CONFIG = {
"JQUERY_URL": None
}
Caused the debug toolbar to go blank. I set it to None because we are on a closed network and JQUERY_URL defaults to a CDN. This causes the debug-panel pages to not have a jQuery reference (as unlike all the other pages, I have no "injection" point for jQuery)
This seems to be a bug somewhere. Potentially if I set JQUERY_URL to my local /static/ url...it will work.
Example:
DEBUG_TOOLBAR_CONFIG = {
"JQUERY_URL": STATIC_URL + "libs/jquery/jquery-1.11.3.min.js"
}
That seemed to fix it for me :)