{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% load django_bootstrap5 %} {% block page_title %}{% translate "LOA HR Dashboard" %}{% endblock page_title %} {% block extra_css %} {% include 'bundles/datatables-css-bs5.html' %} {% endblock %} {% block content %}
| Player | Status | Start Date | End Date | Reason | Proxy | Actions |
|---|---|---|---|---|---|---|
| {{ loa.user.username }} | {% 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:"-" }} | {{ loa.submitted_by.username|default:"-" }} | {% if not loa.is_revoked and not loa.is_past %} {% else %} - {% endif %} |