{% extends 'teacher/teacher_base.html' %} {% block content %}

See Attendance

{{ target_date|date:"l, d M Y" }}

{% for item in present_list %}
{% if not item.is_edited %} {% else %} Manual Edit Only Once {% endif %}

{{ item.student.name }}

ROLL: {{ item.student.roll }} • PIN: {{ item.student.pin }}

IN: {{ item.punch_in|date:"h:i A"|default:"--" }}
OUT: {{ item.punch_out|date:"h:i A"|default:"--" }}
{% empty %}
No present students found.
{% endfor %}
{% for student in absent_students %}

{{ student.name }}

ROLL: {{ student.roll }} • PIN: {{ student.pin }}

Absent
{% empty %}
No absent students found.
{% endfor %}
{% endblock %}