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

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

{% endblock subheading %} {% block actions %} 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 %}

{{ group.title }}

{% for label, value in group.stats %}
{{ label }}
{{ value }}
{% endfor %}
{% endfor %}

Club admins

Add admin
{% for role in admins %} {% empty %} {% endfor %}
Name Email
{{ role.member }} {{ role.member.user.email|default:"—" }}
{% csrf_token %}
No admins yet.
{% endblock panel %}