From: Eric Mc Sween Date: Tue, 2 Nov 2010 15:47:47 +0000 (-0400) Subject: Désactiver la django debug toolbar par défaut X-Git-Url: https://git.auf.org/?p=auf_savoirs_en_partage_django.git;a=commitdiff_plain;h=40f7947bbefa9a5561820be514e08182fb05f5cb;hp=3efbacbef62cd09bfe833fed334c809ee7560761 Désactiver la django debug toolbar par défaut --- 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)