From 5644da22116f40af3df39c1733f6672a17774185 Mon Sep 17 00:00:00 2001 From: Max Yakovenko Date: Sun, 19 Aug 2018 19:03:14 +0300 Subject: [PATCH] update base config. remove debug_toolbar app --- eshop_project/settings/base.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/eshop_project/settings/base.py b/eshop_project/settings/base.py index 3f9c805..292740e 100644 --- a/eshop_project/settings/base.py +++ b/eshop_project/settings/base.py @@ -35,7 +35,6 @@ SECRET_KEY = env.str('SECRET_KEY') # SECURITY WARNING: don't run with debug turned on in production! DEBUG = env.bool('DEBUG') TEMPLATE_DEBUG = DEBUG -DEBUG_TOOLBAR_PANELS = tuple() ALLOWED_HOSTS = tuple(env.list('ALLOWED_HOSTS', default=[])) @@ -54,7 +53,6 @@ INSTALLED_APPS = [ 'contact_us', 'flatpages_ext', - 'debug_toolbar', 'registration', 'ckeditor', 'ckeditor_uploader',