{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% load django_bootstrap5 %} {% block page_title %}{% translate "Leave of Absence" %}{% endblock page_title %} {% block content %}

Leave of Absence

{% if perms.aa_loa.manage_loa %}
{% endif %}

Submit LOA

{% csrf_token %} {% bootstrap_form form %}

Your LOAs

{% if loas %} {% for loa in loas %} {% endfor %}
Status Start Date End Date Reason Actions
{% if loa.is_revoked %} Cancelled {% elif loa.is_active %} Active {% elif loa.is_future %} Upcoming {% else %} Past {% endif %} {{ loa.start_date }} {{ loa.end_date }} {{ loa.reason|default:"-"|truncatechars:50 }} {% if loa.is_active or loa.is_future %} {% endif %}
{% else %}

You have no active or historical LOAs.

{% endif %}
{% endblock content %} {% block extra_javascript %} {% endblock extra_javascript %}