From 3f53ab102132ef91ec18581e10c3e8be01f9b72d Mon Sep 17 00:00:00 2001 From: Yoan Le Clanche Date: Mon, 25 Sep 2023 11:36:49 +0200 Subject: [PATCH] disable debug toolbar --- app/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/settings.py b/app/settings.py index 5ece2bd5..b5313483 100644 --- a/app/settings.py +++ b/app/settings.py @@ -14,7 +14,7 @@ sys.dont_write_bytecode = True DEBUG = True TEMPLATE_DEBUG = DEBUG -DEBUG_TOOLBAR = True +DEBUG_TOOLBAR = False BASE_DIR = os.path.dirname(os.path.dirname(__file__)) -- 2.39.5