{% extends 'info/base.html' %} {% load static %}
Attendance
{% block content %}
{{ cr.name }}
#
Date
Day
Status
{% for a in att_list %}
{{ forloop.counter }}
{{ a.date }}
{{ a.date|date:"l" }}
{% if a.status %}
Present
{% else %}
Absent
{% endif %}
Change
{% empty %}
student has no attendance
{% endfor %}
{% endblock %}