{% extends "public/base.html" %} {% load staticfiles %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% block title %}Alliance Auth{% endblock %} {% block page_title %}{% trans "Fleet Operation Management" %}{% endblock page_title %} {% block extra_css %}{% endblock extra_css %} {% block content %}

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

{% trans "Current Eve Time:" %}

{% trans "Next Timers" %}

{% if future_timers %} {% include "registered/fleetoptable.html" with timers=future_timers %} {% else %}
{% trans "No upcoming timers." %}
{% endif %}

{% trans "Past Timers" %}

{% if past_timers %} {% include "registered/fleetoptable.html" with timers=past_timers %} {% else %}
{% trans "No past timers." %}
{% endif %}
{% include 'bundles/moment-js.html' with locale=True %} {% endblock content %}