user3449833
user3449833

Reputation: 809

Django Debug Toolbar 1.10 (and 1.10.1) Not Showing

I've got django-debug-toolbar 1.9.1 working fine in my configuration (Django 2.1.2), but if I simply update it to 1.10 or 1.10.1, without changing anything else, it doesn't show up anymore. I don't see anything in the change logs that indicate I need to update any settings.

Does anyone have any suggestions? Or there a way I can turn on some kind of logging to see where it's not working?

Thanks!

Upvotes: 1

Views: 442

Answers (2)

radtek
radtek

Reputation: 36300

I had this issue when running 'manage.py runserver'. All I had to do is Refresh my browser cache. In Chrome, you just open View/Developer/Developer Tools and now right click the "Refresh" button and click 'Empty Cache and Hard Reload'.

That did it for me (using Chrome), same thing under Chromium. Cheers!

Upvotes: 0

Alasdair
Alasdair

Reputation: 308959

This issue on GitHub was solved by refreshing the browser cache.

Try running manage.py collectstatic and refresh your browser cache, to make sure you aren't running javascript from an old version.

Upvotes: 3

Related Questions