{% extends 'school/base_school.html' %} {% block title %}Attendance Report | STD Lab{% endblock %} {% block page_title %}Monthly Attendance Matrix{% endblock %} {% block content %}
{{ month_name }} {{ current_year }}
{% if selected_class %} DOWNLOAD PDF {% endif %}
{% if not selected_class %}
SELECT ACADEMIC CLASS
{% for cls in classes %}

{{ cls.name }}

{% endfor %}
{% else %}
{% for day in days %} {% endfor %} {% for row in student_data %} {% for status in row.attendance %} {% endfor %} {% empty %} {% endfor %}
Roll PIN Student Name{{ day }}
{{ row.student.roll }} {{ row.student.pin }} {{ row.student.name }} {% if status == 'P' %} {% elif status == 'A' %} {% elif status == 'L' %}L {% elif status == 'H' %} {% else %}{{ status }} {% endif %}
No students enrolled in this class.
P = Present
A = Absent
L = Leave
H = Holiday / Friday
CHOOSE DIFFERENT CLASS
{% endif %} {% endblock %}