Django Debug Toolbar inside WebKit DevTools. Works fine with background AJAX requests and non-HTML responses. Great for single-page applications and other AJAX intensive web applications.
Install and configure Django Debug Toolbar
Install Django Debug Panel:
pip install django-debug-panel
Add
debug_panel
to yourINSTALLED_APPS
setting:INSTALLED_APPS = ( # ... 'debug_panel', )
Run
python manage.py syncdb
to create the table that store debug informationInstall the Chrome extension Django-panel