1

I'm using django 1.8.2. I installed django-debug-toolbar the implicit way. The sidebar appears normally, but when I click to see a panel, it stay with the loading image without content.
Firebug reports no error, the djdt-scroll div is simply empty. When I examine the /__debug__/render_panel/ request, I can see a normal output in the html tab in firebug.
In short terms, django-debug-toolbar seems to work normally, but does not show the panel content. Any idea ?

albar
  • 3,020
  • 1
  • 14
  • 27

1 Answers1

2

Are you using dajax or dajaxice? If so, try using the Django setting

DAJAXICE_XMLHTTPREQUEST_JS_IMPORT = False

See: How do I get django-debug-toolbar to work with dajax?

Community
  • 1
  • 1
ehontz
  • 1,110
  • 10
  • 7