{% extends 'base.html' %} {% load static %} {% block title %}Class Report — {{ class }}{% endblock %} {% block content %}

Class Report — {{ class }}

Term {{ term }} • Year {{ year }} • {{ students.count }} students

{% if student_stats %}
Total Students
{{ student_stats|length }}
Avg Attendance
{% with total=0 %}{% for s in student_stats %}{% endfor %}—{% endwith %}
{% endif %}
Student Attendance Summary
{% for stat in student_stats %} {% empty %} {% endfor %}
#StudentTotal DaysPresentAbsentLateAttendance Rate
{{ forloop.counter }} {{ stat.student.get_full_name }} {{ stat.total_days }} {{ stat.present }} {{ stat.absent }} {{ stat.late }}
{{ stat.attendance_rate }}%
No data available for this period.
{% endblock %}