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

Attendance

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

Back
Attendance Records
{% for att in attendances %} {% empty %} {% endfor %}
DateDayStatus
{{ att.date|date:"d M Y" }} {{ att.date|date:"l" }} {{ att.get_status_display }}
No attendance records for this period.
{% endblock %}