Overview
Django Debug Toolbar 4.3, released on June 1, 2024, adds Django 5.x compatibility and improves debug panels.
Main Features
Django 5.x
The toolbar is fully compatible with Django 5.0 and 5.1, with updated panels for the framework's new features.
python
# settings.py
INSTALLED_APPS = [
...
'debug_toolbar',
]
MIDDLEWARE = [
'debug_toolbar.middleware.DebugToolbarMiddleware',
...
]
INTERNAL_IPS = ['127.0.0.1']
