Add Django debug toolbar for some insights into SQL queries issued

This commit is contained in:
Raphael Michel
2014-09-29 18:48:56 +02:00
parent a6b5b58451
commit 6e826bb7c5
3 changed files with 13 additions and 1 deletions

View File

@@ -41,6 +41,7 @@ INSTALLED_APPS = (
'tixlpresale',
'compressor',
'bootstrap3',
'debug_toolbar.apps.DebugToolbarConfig',
)
MIDDLEWARE_CLASSES = (
@@ -49,6 +50,7 @@ MIDDLEWARE_CLASSES = (
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'debug_toolbar.middleware.DebugToolbarMiddleware',
'tixlbase.middleware.LocaleMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
@@ -134,10 +136,14 @@ COMPRESS_CSS_FILTERS = (
'compressor.filters.cssmin.CSSMinFilter',
)
# Debug toolbar
DEBUG_TOOLBAR_PATCH_SETTINGS = False
# Tixl specific settings
TIXL_INSTANCE_NAME = 'tixl.de'
INTERNAL_IPS = ('127.0.0.1', '::1')
try:
from local_settings import *

View File

@@ -14,3 +14,8 @@ if settings.DEBUG:
urlpatterns += patterns('django.contrib.staticfiles.views',
url(r'^static/(?P<path>.*)$', 'serve'),
)
import debug_toolbar
urlpatterns += patterns('',
url(r'^__debug__/', include(debug_toolbar.urls)),
)