1👍
✅
From what I can see, you might be missing two things.
In your urls.py
:
from django.conf import settings
from django.conf.urls import include, url
if settings.DEBUG:
import debug_toolbar
urlpatterns += [
url(r'^__debug__/', include(debug_toolbar.urls)),
]
And in your settings.py
:
INTERNAL_IPS = ('127.0.0.1')
assuming you’re running on localhost right now. Do these changes and tell me if this helps you.
Source:stackexchange.com