{% extends 'admin/base.html' %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
👥
{{ total }}
Total Subscribers
{{ active }}
Active Now
{{ expired }}
Expired
{{ pending }}
Pending Payment
📡
{{ mt_sessions }}
Online on Hotspot
💰
₦{{ "{:,.0f}".format(revenue) }}
Total Collected
{% if is_super %}
Site Distribution Breakdown
{% for site in site_breakdown %}

{{ site.name }}

✅ Active: {{ site.active }}
📡 Online: {{ mt_sessions_split.get(site.name.lower(), 0) }}
💰 Revenue: ₦{{ "{:,.0f}".format(site.revenue) }}
{% endfor %}
{% endif %}
Recent Registrations
{% for s in recent %} {% else %} {% endfor %}
Name Email Status Uptime Joined
{{ s.first_name }} {{ s.surname }} {{ s.email }} {{ s.payment_status }} {% set uptime = mt_uptime.get(s.email, '') %} {% if uptime %} {{ uptime }} {% else %} Offline {% endif %} {{ s.created_at.strftime('%d %b %Y') if s.created_at else '—' }}
No subscribers yet
View All Subscribers →
Quick Actions
🔐  Manage Admin Accounts 👥  Manage Subscribers 📡  View Live Sessions 💳  Payment History 📥  Export Subscribers CSV
{% if expiring > 0 %}
⚠️ {{ expiring }} subscriber{{ 's' if expiring > 1 }} expiring within 3 days
{% endif %}
{% endblock %}