{% extends "management/base.html" %} {% load i18n static lucide %} {% block heading %}{{ club.name }}{% endblock heading %} {% block subheading %}{% trans "Management" %}{% endblock subheading %} {% block panel %} {% if attention.no_season %}
{% lucide "calendar-x" size=20 %} {% trans "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 -- same attention/chart/stat-group data controlpanel/club_detail.html shows a platform admin drilling into this club from outside; club_attention/club_charts/club_statistics are already club-scoped, so this is that same data for the club's own staff. Nothing money-shaped renders below for non-admins, same line the nav already draws around the Shop section. {% endcomment %}
{% lucide "user-x" size=16 %} {% trans "Teams without coach" %}
{{ attention.teams_without_manager }}
{% trans "Teams nobody can pick a squad for" %}
{% lucide "user-minus" size=16 %} {% trans "Unrostered members" %}
{{ attention.unrostered }}
{% trans "Active members on no team" %}
{% lucide "clock" size=16 %} {% trans "Pending" %}
{{ attention.pending_approvals }}
{% trans "Memberships awaiting approval" %}
{% lucide "sparkles" size=16 %} {% trans "New members" %}
{{ attention.new_members }}
{% trans "First season at this club" %}
{% lucide "repeat" size=16 %} {% trans "Renewal rate" %}
{% if attention.renewal_rate is None %} {% trans "N/A" %} {% else %} {{ attention.renewal_rate }}% {% endif %}
{% if attention.renewal_rate is None %} {% trans "No previous season" %} {% else %} {% endif %}
{% lucide "user-check" size=16 %} {% trans "Attendance rate" %}
{% if attention.attendance.turnout is None %} {% trans "N/A" %} {% else %} {{ attention.attendance.turnout }}% {% endif %}
{% if attention.attendance.turnout is None %} {% trans "No events this season" %} {% else %} {% endif %}

{% lucide "calendar" size=18 %} {% trans "Upcoming events" %}

{% lucide "arrow-right" size=14 %} {% trans "View all" %}
{% for event in upcoming_events %} {% empty %} {% endfor %}
{{ event.start|date:"D j M, H:i" }} {{ event.title }} {{ event.get_kind_display|capfirst }}
{% trans "Nothing scheduled." %}

{% lucide "user-plus" size=18 %} {% trans "Signups per month" %}

{% trans "New members against returning ones." %}

{% if is_club_admin %}

{% lucide "wallet" size=18 %} {% trans "Club fee status this season" %}

{% endif %}
{% for group in groups %} {% if group.title != "Shop" or is_club_admin %}

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

{% for label, value in group.stats %}
{{ label }}
{% if group.title == "Shop" and label == "Outstanding" or label == "Revenue" %}€{% endif %}{{ value }}
{% endfor %}
{% endif %} {% endfor %}
{% endblock panel %} {% block extra_body %} {% trans "New" as new_label %} {% trans "Returning" as returning_label %} {{ charts|json_script:"chart-data" }} {% endblock extra_body %}