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

{{ class }} — Monthly Attendance

{{ month }}/{{ year }}

Back
Daily Attendance Grid
{% for day in days %} {% endfor %} {% for row in attendance_data %} {% for att in row.attendance %} {% endfor %} {% empty %} {% endfor %}
Student{{ day|date:"d" }}
{{ row.student.get_full_name }} {% if att.status == 'present' %} P {% elif att.status == 'absent' %} A {% elif att.status == 'late' %} L {% elif att.status == 'excused' %} E {% elif att.status == 'weekend' %} {% elif att.status == 'future' %} · {% else %} ? {% endif %}
No data available.
{% endblock %}