Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 820 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 820 Bytes

django-debug-toolbar-extras

This is a collection of add-on panels to django-debug-toolbar.

Currently there are the following panels:

  • URLconf - for displaying a panel of the urlconf for the current request.

Requirements

  • django (any version which supports django-debug-toolbar should work)
  • django-debug-toolbar (tested with 0.9.0-dev)

Installation

Install with pip:

pip install git+https://github.com/crass/django-debug-toolbar-extras.git#egg=django_debug_toolbar_extras

Add debug_toolbar_extras to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'debug_toolbar',
    'debug_toolbar_extras',
)

DEBUG_TOOLBAR_PANELS = (
    ...
    'debug_toolbar_extras.panels.urlconf.URLconfDebugPanel',
    ...
)