{% extends 'base.html' %} {% load static %} {% block title %}Student Report — {{ student.get_full_name }}{% endblock %} {% block content %}
{{ student.get_full_name }} • {{ student.student_id }} • Term {{ term }}, {{ year }}
| Name | {{ student.get_full_name }} |
| ID | {{ student.student_id }} |
| Class | {{ student.current_class|default:"—" }} |
| Status | {{ student.get_status_display }} |
| Total Days | {{ attendance.total }} |
| Present | {{ attendance.present }} |
| Absent | {{ attendance.absent }} |
| Late | {{ attendance.late }} |
| Total Invoiced | {{ fees.invoiced|floatformat:0 }} XAF |
| Total Paid | {{ fees.paid|floatformat:0 }} XAF |
| Balance Due | {{ fees.balance|floatformat:0 }} XAF |