aboutsummaryrefslogtreecommitdiffstats
path: root/example/settings.py
diff options
context:
space:
mode:
authorDavid Cramer2011-05-10 00:02:39 -0700
committerDavid Cramer2011-05-10 00:02:39 -0700
commit875a26213b9c623ddc90bfcf92f419ac8b45d007 (patch)
tree458cfcc32d2d31ea54a6538aaae0d8b0ff2b0af9 /example/settings.py
parent3292aff531d4dee5cf30a003d5d2ee745f718f86 (diff)
parentbbf99c1639bfec6d2edc4473f8adb278970db7a5 (diff)
downloaddjango-debug-toolbar-875a26213b9c623ddc90bfcf92f419ac8b45d007.tar.bz2
Merge branch 'master' into andrepl-master
Conflicts: debug_toolbar/middleware.py
Diffstat (limited to 'example/settings.py')
-rw-r--r--example/settings.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/example/settings.py b/example/settings.py
index 06e153d..11b0117 100644
--- a/example/settings.py
+++ b/example/settings.py
@@ -32,3 +32,16 @@ TEMPLATE_CONTEXT_PROCESSORS = (
)
TEMPLATE_DEBUG = DEBUG
TEMPLATE_DIRS = (os.path.join(PROJECT_PATH, 'templates'))
+DEBUG_TOOLBAR_PANELS = (
+ 'debug_toolbar.panels.version.VersionDebugPanel',
+ 'debug_toolbar.panels.timer.TimerDebugPanel',
+ 'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
+ 'debug_toolbar.panels.headers.HeaderDebugPanel',
+ 'debug_toolbar.panels.profiling.ProfilingDebugPanel',
+ 'debug_toolbar.panels.request_vars.RequestVarsDebugPanel',
+ 'debug_toolbar.panels.sql.SQLDebugPanel',
+ 'debug_toolbar.panels.template.TemplateDebugPanel',
+ #'debug_toolbar.panels.cache.CacheDebugPanel',
+ 'debug_toolbar.panels.signals.SignalDebugPanel',
+ 'debug_toolbar.panels.logger.LoggingPanel',
+) \ No newline at end of file