{% extends "_club_base.html" %} {% load i18n lucide %} {% comment %} The club-staff shell: team managers, coaches and admins only (never parents or players -- see club.mixins.ClubStaffRequiredMixin). Mirrors controlpanel/base.html's block structure, extending the club's own skin instead of the platform's. {% endcomment %} {% block head_title %} {% block section_title %}{% trans "Management" %}{% endblock section_title %} {% endblock head_title %} {% block menu %} {% endblock menu %} {% block main %}

{% block heading %}{% trans "Management" %}{% endblock heading %}

{% block subheading %}{% endblock subheading %}
{% block actions %}{% endblock actions %}
{# Below `lg` the sidebar is hidden, so the same links appear here rather than nowhere. #} {% comment %} A final billing notice follows the admin onto every management page -- but only at error level (inside 7 days of archiving, or already past it). Shown from the moment anything is owed it would sit on every screen for weeks and train people to ignore the one week it matters. home.html includes the same partial at every level, hence the guard here rather than inside the partial. {% endcomment %} {% if billing_notice.is_urgent and nav != "home" %} {% include "management/_billing_notice.html" %} {% endif %} {% block panel %}{% endblock panel %} {% endblock main %}