{% extends "controlpanel/base.html" %} {% load static lucide %} {% block heading %}RosterChief Platform Dashboard{% endblock heading %} {% block subheading %}Welcome back {{ user.member.first_name }}!{% endblock subheading %} {% block actions %} {% lucide "plus" size=16 %} Create new club {% endblock actions %} {% block panel %} {% comment %} Needs attention first: these are the numbers that are supposed to be zero. A club with no current season cannot take a signup or schedule a match — and it fails silently, nothing errors — while an admin without a second factor is locked out of their own club. Both are work queues, not statistics. The vanity totals sit further down. {% endcomment %}
{% lucide "calendar-x" size=16 %} No current season
{{ attention.clubs_without_season }}
Clubs that cannot take signups
{% lucide "moon-star" size=16 %} Dormant
{{ attention.dormant_clubs }}
Nothing scheduled in 30 days
{% lucide "shield-alert" size=16 %} MFA pending
{{ attention.admins_pending_mfa }}
Admins locked out until they enrol
{% lucide "banknote" size=16 %} Outstanding
€{{ attention.outstanding|floatformat:2 }}
Unpaid across every club

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

New members against returning ones, across every club.

{% lucide "euro" size=18 %} Revenue per month

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

Where clubs stall. One with no team or no events is a shell.

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

{% lucide "toggle-right" size=18 %} Feature adoption

Manage
{% for flag in flags %} {% empty %} {% endfor %}
{{ flag.name }} {% if flag.overridden %} {# `everyone` overrides club targeting, so the club count says nothing here. #} {% if flag.everyone %}On for all{% else %}Off everywhere{% endif %} {% else %} {{ flag.clubs }} / {{ totals.clubs }} clubs {% endif %}
No features yet.
Active clubs
{{ totals.clubs }}
Archived
{{ totals.archived_clubs }}
Members
{{ totals.members }}
{{ attention.members_without_login }} without a login
Club admins
{{ totals.admins }}

Clubs

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