diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-15 09:43:14 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-15 09:43:49 +0100 |
commit | f212ddd0db94d46081331653205cdfba385607c1 (patch) | |
tree | 63d76ebd29cca56bdc47735acea77338e697eacf /config | |
parent | 493dc0423f08fdd8ad99c24ef768979952fb9c56 (diff) |
Switched off buggy aspect of debug toolbar
https://github.com/cookiecutter/cookiecutter-django/issues/2902
Diffstat (limited to 'config')
-rw-r--r-- | config/settings/local.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/settings/local.py b/config/settings/local.py index c27f1b9..9db7081 100644 --- a/config/settings/local.py +++ b/config/settings/local.py @@ -47,7 +47,7 @@ INSTALLED_APPS += ["debug_toolbar"] MIDDLEWARE += ["debug_toolbar.middleware.DebugToolbarMiddleware"] # https://django-debug-toolbar.readthedocs.io/en/latest/configuration.html#debug-toolbar-config DEBUG_TOOLBAR_CONFIG = { - "DISABLE_PANELS": ["debug_toolbar.panels.redirects.RedirectsPanel"], + # "DISABLE_PANELS": ["debug_toolbar.panels.redirects.RedirectsPanel"], "SHOW_TEMPLATE_CONTEXT": True, } # https://django-debug-toolbar.readthedocs.io/en/latest/installation.html#internal-ips |