{% extends "controlpanel/base.html" %} {% load static lucide %} {% block panel_title %}{{ club.name }}{% endblock panel_title %} {% block breadcrumb %} clubs / {{ club.slug }} / settings
id {{ club.pk|stringformat:"s"|slice:":8" }} | created {{ club.created|date:"Y-m-d" }} {% endblock breadcrumb %} {% block actions %} {% lucide "pencil" size=14 %} Edit {% lucide "external-link" size=14 %} Open {% if club.is_archived %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %} {% endblock actions %} {% block panel %} {# --- club header --------------------------------------------------- #}
{% comment %} The ring is the club's own primary colour, same as on the club's own subdomain -- but the control panel never injects a page-wide --color-primary override (it must not dress itself up as the club), so it's set here as a locally-scoped custom property instead: it only reaches this element, not the rest of the panel's buttons and badges. {% endcomment %} {% if club.logo %}
{{ club.name }}
{% else %}
{{ club.initials }}
{% endif %}
{{ club.name }}
{{ club.slug }}.rosterchief.app · {{ club.get_sport_type_display }}{% if club.legal_name %} · {{ club.legal_name }}{% endif %} {% if club.is_archived %} Archived {% endif %}
{% if club.is_archived %}
{% lucide "alert-triangle" size=18 %} This club is archived: its subdomain no longer resolves. Nothing has been deleted — restore it to bring it back.
{% endif %} {% if attention.no_season %}
{% lucide "calendar-x" size=18 %} No season covers today, so this club cannot take a signup or schedule a match. Nothing errors — it is simply inert.
{% endif %} {% comment %} The club's own numbers that should be zero. Teams without a manager is a defect in the club's setup, not a statistic: with nobody in a management position the access service grants no authority over that team, so nobody can pick the squad. {% endcomment %}
{% comment %}
Outstanding
€{{ attention.outstanding|floatformat:2 }}
{{ attention.unpaid_members }} member{{ attention.unpaid_members|pluralize }} unpaid this season
{% endcomment %}
Teams without coach
{{ attention.teams_without_manager }}
Teams nobody can pick a squad for
Unrostered members
{{ attention.unrostered }}
Active members on no team
Pending
{{ attention.pending_approvals }}
Memberships awaiting approval
New members
{{ attention.new_members }}
{# First season at this club — someone returning after a year away is a renewal. #}
First season at this club
Renewal rate
{% if attention.renewal_rate is None %}N/A{% else %}{{ attention.renewal_rate }}%{% endif %}
{% if attention.renewal_rate is None %} No previous season {% else %} {% endif %}
Attendance rate
{% if attention.attendance.turnout is None %}N/A{% else %}{{ attention.attendance.turnout }}%{% endif %}
{% if attention.attendance.turnout is None %} No events this season {% else %} {% endif %}
{# --- two-column layout: left = charts/stats, right = flags/admins/billing --- #}
{% lucide "user-plus" size=16 %} Signups per month

New members against returning ones.

{% lucide "wallet" size=16 %} Club fee status this season
{% for group in groups %}
{% lucide group.icon size=16 %} {{ group.title }}
{% for label, value in group.stats %}
{{ label }}
{% if group.title == "Shop" and label == "Outstanding" or label == "Revenue" %}€{% endif %}{{ value }}
{% endfor %}
{% endfor %}
{% include "controlpanel/_club_home_location_card.html" %}
{% include "controlpanel/_club_features_card.html" %} {% include "controlpanel/_club_admins_card.html" %} {% include "controlpanel/_club_billing_card.html" %}
{% endblock panel %} {% block extra_body %} {{ charts|json_script:"chart-data" }} {% endblock extra_body %}