Django Debug Toolbar is an insanely useful Django app that you can drop into any Django project and get tons of useful information while developing and testing your work, all in a pretty sexy looking toolbar.
DjDT displays information such as:
- Execution time
- Settings
- HTTP Headers
- Request Variables
- SQL
- Template Debug Console
- Signals
- Logging (from the standard Python logging module)
There is a great video on the landing page that does an admirable job showing off what DjDT is capable of doing for you. I can’t imagine why anyone would not use this when developing with Django, unless it’s just plain ignorance of it.
Seriously, save yourself some headache when you are testing your work and use DjDT.


