{% extends BASE_TEMPLATE %} {% load i18n %} {% load static %} {% block customCSS %} {% endblock %} {% block body %}

{% trans "Manage Days Off" %}

{% csrf_token %} {% if error_message %} {% endif %} {% if days_off_form.staff_member %}
{{ days_off_form.staff_member }}
{% endif %}
{% if days_off_form.errors %}
{{ days_off_form.errors }}
{% endif %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% include 'modal/error_modal.html' %}
{% endblock %} {% block customJS %} {% endblock %}