From f212ddd0db94d46081331653205cdfba385607c1 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 15 May 2024 09:43:14 +0100 Subject: Switched off buggy aspect of debug toolbar https://github.com/cookiecutter/cookiecutter-django/issues/2902 --- config/settings/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/settings') 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 -- cgit v1.2.3