{% extends "admin/base_site.html" %} {% load i18n %} {% block extrahead %} {{ formset.media }} {% endblock %} {% block content %}

Daily Attendance

{{ formset.management_form }} {% if not readonly %} Set all to present {% else %} Attendance already submitted. Please contact an administrator if you need to change it. {% endif %} {{ formset.non_form_errors }} {{ msg|safe }}
{% for student in students %} {% if not student.marked and not readonly %} {% else %} {% endif %} {% endfor %}
Student Attendance Note
{{ student.form.non_field_errors }} {{ student.form.student_display }} {{ student.form.student }} {{ student.form.status }} {{ student.form.status.errors }} {{ student.form.date }} {{ student.form.notes }} {{ student.form.notes.errors }} {{ student.form.enroll_note }} {% for hid in student.form.hidden_fields %} {{hid}}{% endfor %} {{ student }} {{ student.status }} {{ student.notes }} {% for hid in student.form.hidden_fields %} {{hid}}{% endfor %}
{% if not readonly %} {% endif %}
Tip: You can enter attendance by just typing A for absent, P for present, etc.
{% endblock %}