{% extends 'base/base.html' %} {% load static %} {% load index %} {% block title %} Add attendance {% endblock %} {% block body %} {% include 'base/nav-bar.html' %}
{% if errors %}
{% else %}

{{ user.first_name }} {{ user.last_name }}


{{ year }}


{% for i in month_num %}

{{ month|index:i }} - {{ month_att|index:i }}

{% endfor %}
{% endif %}
{% include 'base/footer.html' %} {% endblock %}