From 342c97aa777cd38b707296e7b68410cfec2399d8 Mon Sep 17 00:00:00 2001 From: "Wade P." Date: Mon, 25 Nov 2013 16:38:07 +0100 Subject: [PATCH] Update configuration.rst v0.11.0 --- docs/configuration.rst | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index c1fe65de0..7e1f0746c 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -12,17 +12,17 @@ included in the toolbar. It works like Django's ``MIDDLEWARE_CLASSES`` setting. The default value is:: DEBUG_TOOLBAR_PANELS = [ - 'debug_toolbar.panels.versions.VersionsPanel', - 'debug_toolbar.panels.timer.TimerPanel', - 'debug_toolbar.panels.settings.SettingsPanel', - 'debug_toolbar.panels.headers.HeadersPanel', - 'debug_toolbar.panels.request.RequestPanel', - 'debug_toolbar.panels.sql.SQLPanel', - 'debug_toolbar.panels.template.TemplatesPanel', - 'debug_toolbar.panels.cache.CachePanel', - 'debug_toolbar.panels.signals.SignalsPanel', - 'debug_toolbar.panels.logging.LoggingPanel', - 'debug_toolbar.panels.redirects.RedirectsPanel', + 'debug_toolbar.panels.version.VersionDebugPanel', + 'debug_toolbar.panels.profiling.ProfilingDebugPanel', + 'debug_toolbar.panels.timer.TimerDebugPanel', + 'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel', + 'debug_toolbar.panels.headers.HeaderDebugPanel', + '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', ] This setting allows you to: