settings: Enable de Django debug toolbar.
authorMatthijs Kooijman <matthijs@stdin.nl>
Tue, 19 Oct 2010 09:00:04 +0000 (11:00 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Tue, 19 Oct 2010 09:03:20 +0000 (11:03 +0200)
This toolbar is enabled when DEBUG is on and the client ip is in
INTERNAL_IPS.

localsettings.py.tmpl
settings.py

index 58a45447820cf65000be1bfbd8ed99d4225e3c47..967e55032c755a0c0494f7a0624e8bc2133e5431 100644 (file)
@@ -4,3 +4,6 @@
 # For example, enable debugging by commenting in the following lines.
 #DEBUG = True
 #TEMPLATE_DEBUG = True
+
+# Show extra debug info to Matthijs' IP (debug_toolbar also needs this)
+#INTERNAL_IPS=("82.169.104.215",)
index 91b6996f18d087b673ff2c3fc6ecec5278a1297b..86c98d02fda64987e1ac90e7766cbfdfcd796c1a 100644 (file)
@@ -64,6 +64,7 @@ MIDDLEWARE_CLASSES = (
     'django.contrib.sessions.middleware.SessionMiddleware',
     'django.contrib.auth.middleware.AuthenticationMiddleware',
     'django.middleware.csrf.CsrfViewMiddleware',
+    'debug_toolbar.middleware.DebugToolbarMiddleware',
 )
 
 ROOT_URLCONF = 'dorestad-bookings.urls'
@@ -84,6 +85,7 @@ INSTALLED_APPS = (
     'django.contrib.sessions',
     'django.contrib.admin',
     'tickets',
+    'debug_toolbar',
 )
 
 TEMPLATE_CONTEXT_PROCESSORS = (