{% extends "controlpanel/base.html" %} {% load lucide %} {% block heading %}{{ club.name }}{% endblock heading %} {% block subheading %}

{{ club.slug }} {% if club.is_archived %} Archived {% endif %}

{% endblock subheading %} {% block actions %} {% lucide "pencil" size=16 %} Edit {% if club.is_archived %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %} {% endblock actions %} {% block panel %} {% if club.is_archived %}
This club is archived: its subdomain no longer resolves. Nothing has been deleted — restore it to bring it back.
{% endif %}
{% for group in groups %}

{% lucide group.icon size=18 %} {{ group.title }}

{% for label, value in group.stats %}
{{ label }}
{{ value }}
{% endfor %}
{% endfor %}
{% for role in admins %} {% empty %} {% endfor %}
Name Email
{{ role.member }} {{ role.member.user.email|default:"—" }}
{% csrf_token %}
No admins yet.
{% endblock panel %}