{% extends 'base.html' %} {% block title %}Fees — Avighna{% endblock %} {% block content %}

Fees — {{ month }}

₹{{ total_collected }}
Collected this month
₹{{ total_pending }}
Pending this month
{% for row in rows %} {% empty %} {% endfor %}
StudentClassAmountStatus
{{ row.student.name }} {{ row.student.batch_or_class|default:"—" }} ₹{{ row.amount }} {% if row.paid %} ✅ Paid {% else %} ⏳ Pending {% endif %} {% if not row.paid %}
{% csrf_token %}
{% else %} View {% endif %}
No active students yet.
{% endblock %}