Plain is headed towards 1.0! Subscribe for development updates →

plain.toolbar

Debug toolbar for Plain applications.

Installation

uv add plain.toolbar

Add it to your INSTALLED_PACKAGES:

# app/settings.py
INSTALLED_PACKAGES = [
    "plain.toolbar",
    # other packages...
]

Add the toolbar to your base template:

<!-- app/templates/base.html -->
<!DOCTYPE html>
<html>
<body>
    {% block content required %}{% endblock %}
    {% toolbar %}
</body>
</html>

The toolbar will appear when settings.DEBUG is True or when request.user.is_admin is True.