{% extends "superadmin/base_superadmin.html" %} {% block page_title %}System Overview{% endblock %} {% block page_description %}Complete system statistics and monitoring{% endblock %} {% block superadmin_content %}

Total Members

{{ total_members }}

Active users in system

Administrators

{{ total_admins }}

{{ total_superadmins }} superadmin(s)

Total Savings

৳{{ "{:,.0f}".format(total_contributions) }}

{{ total_contribution_count }} transactions

Active Events

{{ active_events }}

{{ events_count }} total events

Database Status

Members Table {{ total_members }} records
Contributions {{ total_contribution_count }} records
Events {{ events_count }} records
Currencies {{ currencies_count }} records

This Month

Contributions ৳{{ "{:,.0f}".format(monthly_contributions) }}
Performance compared to total

Quick Actions

Recent Members

View all
{% for member in recent_members %}
{{ member.full_name[0] if member.full_name else 'M' }}

{{ member.full_name }}

{{ member.custom_id or 'No ID' }} • {{ member.email }}

{% if member.is_superadmin %} Super {% elif member.is_admin %} Admin {% else %} Member {% endif %}
{% endfor %}

Recent Contributions

View all
{% for contribution in recent_contributions %}

{{ contribution.member.full_name }}

{{ contribution.contribution_type.title() }}

৳{{ "{:,.0f}".format(contribution.amount) }}

{{ contribution.created_at.strftime('%b %d') }}

{% endfor %}
{% endblock %}