{% extends "admin/base.html" %}
{% load static scroll_to_top %}
{# Inject the scroll-to-top control through the documented footer block only.
The title and branding blocks are intentionally left to Django so the
standard branding, subtitle, and color-theme toggle keep working unchanged
across the supported Django 4.2 / 5.x / 6.x admin templates. #}
{% block extrahead %}{{ block.super }}
{# Optional, namespaced admin enhancements: a collapse toggle for this app's
menu group and styling for the starter-configuration button. Reads the
standard admin DOM only; no global elements are restyled. #}
{% endblock %}
{% block footer %}
{{ block.super }}
{% scroll_to_top scope="admin" %}
{% endblock %}