Skip to content

crass/django-debug-toolbar-extras

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

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

About

Extra panels for django's debug toolbar

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages