Reputation: 5010
I have just installed django debug toolbar locally to test my django app and it works great.
I've just committed and pushed with mercurial the new changes on my test remote server and I can't see the toolbar. The files are the same.
Why?
Upvotes: 6
Views: 1689
Reputation: 308849
If DEBUG is True and you are not seeing the toolbar, then you probably need to add the IP address of the computer you are accessing the site from to INTERNAL_IPS
in your settings.py
file.
INTERNAL_IPS = (<your_ip_address>,)
Upvotes: 6