How can I make toolbar to be visible in admin panel?
This works for me using the shipped example application. I can't reproduce the issue as stated. Do you have more details about how to reproduce or a minimal example project?
This issue can be closed, this was my fault
Can you post the solution? I am having a similar problem where the toolbar is showing up on the site but not in the admin pages.
+1 on
Can you post the solution?
@joncasdam
INTERNAL_IPS = ('127.0.0.1')
DEBUG = True
INSTALLED_APPS += [
'debug_toolbar',
]
MIDDLEWARE += [
'debug_toolbar.middleware.DebugToolbarMiddleware',
]
Most helpful comment
@joncasdam