{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% block page_title %} {% translate "Fleet Operation Management" %} {% endblock page_title %} {% block header_nav_brand %} {% translate "Fleet Operation Timers" %} {% endblock header_nav_brand %} {% block header_nav_collapse_right %} {% if perms.auth.optimer_management %} {% endif %} {% endblock header_nav_collapse_right %} {% block content %}
{% translate "Current Eve Time:" %}
{% translate "Next Fleet Operations" %}
{% if future_timers %} {% include "optimer/fleetoptable.html" with timers=future_timers %} {% else %}
{% translate "No upcoming timers." %}
{% endif %}
{% translate "Past Fleet Operations" %}
{% if past_timers %} {% include "optimer/fleetoptable.html" with timers=past_timers %} {% else %}
{% translate "No past timers." %}
{% endif %}
{% include 'bundles/moment-js.html' with locale=True %} {% include 'bundles/timers-js.html' %} {% endblock content %}