This toolbar is enabled when DEBUG is on and the client ip is in
INTERNAL_IPS.
# 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",)
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
+ 'debug_toolbar.middleware.DebugToolbarMiddleware',
)
ROOT_URLCONF = 'dorestad-bookings.urls'
'django.contrib.sessions',
'django.contrib.admin',
'tickets',
+ 'debug_toolbar',
)
TEMPLATE_CONTEXT_PROCESSORS = (