{% extends "superadmin/base_superadmin.html" %} {% block title %}Reports - Superadmin{% endblock %} {% block content %}
Comprehensive system reports and analytics
Income, expenses, and financial trends
Login patterns, contribution activity
Performance metrics by group
| Group | Members | Total Contributions | Avg Contribution | Performance |
|---|---|---|---|---|
|
{{ group.name }}
{{ group.group_code }}
|
{{ group.member_count or 0 }} | ৳{{ "%.2f"|format(group.total_contributions or 0) }} | ৳{{ "%.2f"|format(group.avg_contribution or 0) }} | {% set performance = (group.total_contributions or 0) / 10000 * 100 %} {% if performance >= 80 %} Excellent {% elif performance >= 60 %} Good {% else %} Needs Improvement {% endif %} |