diff options
| author | Rob Hudson | 2008-09-08 11:18:52 -0700 |
|---|---|---|
| committer | Rob Hudson | 2008-09-08 11:18:52 -0700 |
| commit | 44ae80ddd1ed1f14b1d9c00113fc629616c2283c (patch) | |
| tree | fada197a1d9ff319fe481b4e8f6b59f706fc27b6 /README.rst | |
| parent | 68131cbf61cdde63d1c263ed5668f727fceb67b4 (diff) | |
| download | django-debug-toolbar-44ae80ddd1ed1f14b1d9c00113fc629616c2283c.tar.bz2 | |
Adding a cache statistics panel contributed by David Cramer.
Diffstat (limited to 'README.rst')
| -rw-r--r-- | README.rst | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -15,6 +15,7 @@ Currently, the following panels have been written and are working: - Request timer - Common HTTP headers - GET/POST variable display +- Cache stats If you have ideas for other panels please let us know. @@ -41,10 +42,11 @@ Installation DEBUG_TOOLBAR_PANELS = ( 'debug_toolbar.panels.version.VersionDebugPanel', - 'debug_toolbar.panels.sql.SQLDebugPanel', 'debug_toolbar.panels.timer.TimerDebugPanel', 'debug_toolbar.panels.headers.HeaderDebugPanel', 'debug_toolbar.panels.http_vars.HttpVarsDebugPanel', + 'debug_toolbar.panels.sql.SQLDebugPanel', + 'debug_toolbar.panels.cache.CacheDebugPanel', ) You can change the ordering of this tuple to customize the order of the |
