{% extends "controlpanel/base.html" %} {% load static lucide %} {% block heading %}RosterChief Platform Dashboard{% endblock heading %} {% block subheading %}Welcome back {{ user.member.first_name }} · {% now "d b Y" %}{% endblock subheading %} {% block actions %} {% lucide "plus" size=16 %} Create new club {% endblock actions %} {% block panel %}
{% lucide "building-2" size=16 %} Clubs
{{ totals.clubs }}
Managing {{ totals.members }} member{{ totals.members|pluralize }}
{% lucide "archive" size=16 %} Archived clubs
{{ totals.archived_clubs }}
Not accessible but data maintained
{% lucide "calendar-x" size=16 %} No current season
{{ attention.clubs_without_season }}
Clubs that cannot take signups
{% lucide "moon-star" size=16 %} Dormant clubs
{{ attention.dormant_clubs }}
No events scheduled next 30 days
{% lucide "shield-alert" size=16 %} MFA pending
{{ attention.admins_pending_mfa }}
Admins without MFA configured
{% lucide "receipt-euro" size=16 %} Payment pending
€{{ attention.dues_owed|floatformat:2 }}
{{ attention.dues_in_grace }} in grace · {{ attention.dues_overdue }} overdue {% comment %} Renewals pending should sit at ~0: the cron job renews clubs 30 days out and then they fall past the horizon. A number that lingers here means the job has stopped and a club is about to use the platform for free — which no other figure on this page reveals, because nothing has been billed yet. {% endcomment %} {% if attention.renewals_pending %} · {{ attention.renewals_pending }} awaiting renewal {% endif %}

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

New members against returning ones, across every club.

{% lucide "milestone" size=18 %} Onboarding

Tracking club onboarding to ensure a smooth start

{% for step in funnel %}
{% lucide step.icon size=14 %} {{ step.label }} {{ step.count }}
{% endfor %}

{% lucide "building-2" size=18 %} Clubs

{% include "controlpanel/_club_health_table.html" %}
{% endblock panel %} {% block extra_body %} {{ charts|json_script:"chart-data" }} {% endblock extra_body %}