Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 837 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 837 Bytes

About

This is a simple hits/miss panel for Johnny cache.

Installation

pip install git+git://github.com/streeter/johnny-panel.git#egg=johnny_panel

Usage

To use, add this to your settings,py file:

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.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',
    'johnny_panel.panel.JohnnyPanel'
)