{% extends 'layout.html' %} {% block body %}

Attendance By Date



{% if val_len == 0 %}

No Data Found! Please try with another Dates

{% else %} {% for row in allValues %} {% endfor %}
# Roll Number Date Morning In Morning Out Afternoon In Afternoon Out
{{allValues.index(row)+1}} {{row[0]}} {{row[1]}} {{row[2]}} {{row[3]}} {{row[4]}} {{row[5]}}
{% endif %}
{% endblock %}