{% extends 'base.html' %} {% load static %} {% block title %}Attendance — {{ student.get_full_name }}{% endblock %} {% block content %}

{{ student.get_full_name }}

Attendance Record • {{ student.current_class|default:"No class" }}

Back to Student
Present
{{ present_count|default:"0" }}
Absent
{{ absent_count|default:"0" }}
Late
{{ late_count|default:"0" }}
Attendance Rate
{{ attendance_rate|default:"0" }}%
Attendance Records
{% for att in attendances %} {% empty %} {% endfor %}
Date Day Status Period Marked By Remarks
{{ att.date|date:"d M Y" }} {{ att.date|date:"l" }} {{ att.get_status_display }} {{ att.get_period_display }} {{ att.marked_by.user.get_full_name|default:"—" }} {{ att.remarks|default:"—" }}
No attendance records for this period.
{% endblock %}