Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

It's always blank #8

Open
peterbe opened this issue Jun 13, 2014 · 5 comments
Open

It's always blank #8

peterbe opened this issue Jun 13, 2014 · 5 comments

Comments

@peterbe
Copy link

peterbe commented Jun 13, 2014

I followed the instructions (only using the django-debug-panel middleware) and installed the extension.
I just get a blank screen.
screenshot 2014-06-13 16 00 43

@CPlusPlus17
Copy link

Exactly the same here: Django 1.6

@CPlusPlus17
Copy link

Activated my brain:
python manage.py collectstatic

And it works. :)

@ianwalter
Copy link

Same for me, Django 1.6.10, django-debug-toolbar 1.3
collectstatic didn't work for me.

@ianwalter
Copy link

Actually, mine shows up, I had to expand it

@prashker
Copy link

prashker commented Jan 6, 2016

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 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants