From d06b19d3d79b10867029a7c96dd1919c5d2bf932 Mon Sep 17 00:00:00 2001 From: Eric Mc Sween Date: Mon, 1 Nov 2010 12:11:10 -0400 Subject: [PATCH] =?utf8?q?Int=C3=A9gration=20de=20la=20django=20debug=20tool?= =?utf8?q?bar?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- auf_savoirs_en_partage/development.py | 3 +++ devel.cfg | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/auf_savoirs_en_partage/development.py b/auf_savoirs_en_partage/development.py index 83fb53c..6c89a09 100644 --- a/auf_savoirs_en_partage/development.py +++ b/auf_savoirs_en_partage/development.py @@ -1,3 +1,6 @@ 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',) diff --git a/devel.cfg b/devel.cfg index 2a1c4c8..0c57ae8 100644 --- a/devel.cfg +++ b/devel.cfg @@ -4,4 +4,4 @@ extends=buildout.cfg [django] wsgi=false settings=development - +eggs += django-debug-toolbar -- 1.7.10.4