{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% load django_bootstrap5 %} {% block page_title %}{% translate "Leave of Absence" %}{% endblock page_title %} {% block content %}
| 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 %} |
You have no active or historical LOAs.
{% endif %}