From 40f7947bbefa9a5561820be514e08182fb05f5cb Mon Sep 17 00:00:00 2001 From: Eric Mc Sween Date: Tue, 2 Nov 2010 11:47:47 -0400 Subject: [PATCH] =?utf8?q?D=C3=A9sactiver=20la=20django=20debug=20toolbar=20?= =?utf8?q?par=20d=C3=A9faut?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- auf_savoirs_en_partage/development.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/auf_savoirs_en_partage/development.py b/auf_savoirs_en_partage/development.py index 00dfa38..a54fb28 100644 --- a/auf_savoirs_en_partage/development.py +++ b/auf_savoirs_en_partage/development.py @@ -2,6 +2,9 @@ from auf_savoirs_en_partage.settings import * DEBUG=True TEMPLATE_DEBUG=DEBUG INTERNAL_IPS = ('127.0.0.1',) -MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',) -INSTALLED_APPS += ('debug_toolbar',) -DEBUG_TOOLBAR_CONFIG = dict(INTERCEPT_REDIRECTS=False) + +# Activer la debug toolbar... + +# MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',) +# INSTALLED_APPS += ('debug_toolbar',) +# DEBUG_TOOLBAR_CONFIG = dict(INTERCEPT_REDIRECTS=False) -- 1.7.10.4