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

Students

{{ org.name }}

+ Add Student
{% for row in students %} {% empty %} {% endfor %}
Name Class/Batch Phone Monthly Fee {{ month }} Status Status
{{ row.obj.name }} {{ row.obj.batch_or_class|default:"—" }} {{ row.obj.phone|default:"—" }} ₹{{ row.fee_amount }} {% if row.fee_paid %} ✅ Paid {% else %} ⏳ Pending {% endif %} {% if row.obj.is_active %} Active {% else %} Inactive {% endif %} Edit
No students yet. Click "+ Add Student" or verify one via QR.
{% endblock %}