{% extends "allianceauth/base.html" %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% block page_title %}{% translate "Fleet Operation Management" %}{% endblock page_title %} {% block extra_css %}{% endblock extra_css %} {% block content %}

{% translate "Fleet Operation Timers" %}
{% if perms.auth.optimer_management %} {% translate "Create Operation" %} {% endif %}

{% 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 %}