{% extends "controlpanel/base.html" %} {% block heading %}{% if show_archived %}Archived clubs{% else %}Clubs{% endif %}{% endblock heading %} {% block actions %} {% if show_archived %} Active clubs {% else %} Archived {% endif %} New club {% endblock actions %} {% block panel %}
{% if show_archived %}{% endif %}
{% for club in clubs %} {% empty %} {% endfor %}
Club Members Teams Events Admins
{{ club.name }}
{{ club.slug }}
{{ club.member_count }} {{ club.team_count }} {{ club.event_count }} {{ club.admin_count }}
{% if show_archived %}No archived clubs.{% else %}No clubs yet.{% endif %}
{% endblock panel %}