A simple Django package that adds a "DEVELOPMENT MODE" bar at the top of your pages when DEBUG=True.
Install the package using pip:
pip install django-simple-devbarAdd django_simple_devbar to your INSTALLED_APPS in settings.py:
INSTALLED_APPS = [
...
'django_simple_devbar',
]Add django_simple_devbar.middleware.DevBarMiddleware to your MIDDLEWARE in settings.py:
MIDDLEWARE = [
...
'django_simple_devbar.middleware.DevBarMiddleware',
]Ensure DEBUG = True in your settings.py. The development bar will automatically appear at the top of your HTML pages.
MIT