Django-debug-toolbar: Toolbar is not visible in admin panel

Created on 11 Jan 2018  路  5Comments  路  Source: jazzband/django-debug-toolbar

How can I make toolbar to be visible in admin panel?

Most helpful comment

@joncasdam

INTERNAL_IPS = ('127.0.0.1')
DEBUG = True
INSTALLED_APPS += [
    'debug_toolbar',
]

MIDDLEWARE += [
    'debug_toolbar.middleware.DebugToolbarMiddleware',
]

All 5 comments

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',
]
Was this page helpful?
0 / 5 - 0 ratings

Related issues

pawamoy picture pawamoy  路  5Comments

stfenjobs picture stfenjobs  路  6Comments

mwoodward-atd picture mwoodward-atd  路  11Comments

mangobowl picture mangobowl  路  11Comments

gw0 picture gw0  路  3Comments