{% extends "controlpanel/base.html" %} {% load lucide %} {% block panel_title %}{% if show_archived %}Archived clubs{% else %}Clubs{% endif %}{% endblock panel_title %} {% block breadcrumb %} clubs {% if show_archived %} | Archived {% endif %} | {{ clubs|length }} club{{ clubs|length|pluralize }} {% endblock breadcrumb %} {% block actions %} {% if show_archived %} {% lucide "archive-x" size=14 %} Hide archived {% else %} {% lucide "archive" size=14 %} Show archived {% endif %} {% lucide "plus" size=14 %} New club {% endblock actions %} {% block panel %} {% if show_archived %}
Archived clubs {% lucide "archive" size=12 %} {{ clubs|length }} archived
{% endif %}
{% if show_archived %}{% endif %}
{% lucide "search" size=14 %}
{% if search %} {% lucide "x" size=14 %} Clear {% endif %}
{% if show_archived %} {% include "controlpanel/_club_health_table.html" with empty_message="No archived clubs." %} {% else %} {% include "controlpanel/_club_health_table.html" %} {% endif %}
{% endblock panel %}