{% extends 'base.html' %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

Back to List
Bulk Attendance Recording: Select employees and their attendance status for a specific date. If no employees are selected, all active employees will be marked with the chosen status.
{% csrf_token %}
{{ form.date }} {% if form.date.errors %}
{{ form.date.errors.0 }}
{% endif %}
{{ form.status }} {% if form.status.errors %}
{{ form.status.errors.0 }}
{% endif %}
{% for choice in form.employees %}
{{ choice.tag }}
{% endfor %}
{% if form.employees.errors %}
{{ form.employees.errors.0 }}
{% endif %}
Cancel
{% endblock %}