{% 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 %} {% translate "Create Operation" as nav_item_title %} {% url "optimer:add" as nav_item_link %} {% include "framework/header/nav-collapse-button.html" with btn_modifier="success" url=nav_item_link title=nav_item_title fa_icon="fa-solid fa-plus" icon_on_mobile=True %} {% 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 %}