{% extends "admin/base_admin.html" %} {% block title %}Reports - Admin Panel{% endblock %} {% block page_title %}Reports{% endblock %} {% block content %}

Financial Reports & Analytics

Comprehensive insights into group savings performance and member contributions

Active Members
{{ total_members }}
Total Contributions
৳{{ "%.2f"|format(total_contributions) }}
{% if monthly_contributions %}

Monthly Contributions Trend

{% for contribution in monthly_contributions %}
{{ contribution.month.strftime('%B %Y') }}
৳{{ "%.2f"|format(contribution.total) }}
{% endfor %}
{% endif %}

Export Data

Download member data and contribution records for external analysis

{% endblock %}