{% extends 'base.html' %} {% load static %} {% block title %}Attendance Report - Rapha-Bethel BNPS{% endblock %} {% block content %}

Attendance Report

School-wide attendance overview

Export CSV
{% if overall_rate %}
Overall attendance rate for this period: {{ overall_rate }}%
{% endif %}
Attendance by Class
{% for stat in stats %} {% empty %} {% endfor %}
ClassTotal RecordsPresentAbsentLateRateActions
{{ stat.class }} {{ stat.total }} {{ stat.present }} {{ stat.absent }} {{ stat.late }}
{{ stat.rate }}%
Detail
No attendance data for this period.
{% endblock %}