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

{% if optimer %} {% if perms.auth.optimer_management %} {% endif %} {% for ops in optimer %} {% if perms.auth.optimer_management %} {% endif %} {% endfor %}
{% trans "Operation Name" %} {% trans "Doctrine" %} {% trans "Form Up System" %} {% trans "Form Up Location" %} {% trans "Start Time" %} {% trans "Local Time" %} {% trans "Duration" %} {% trans "FC" %} {% trans "Details" %} {% trans "Post Time" %}{% trans "Creator" %} {% trans "Action" %}
{{ ops.operation_name }} {{ ops.doctrine }} {{ ops.system }} {{ ops.location }} {{ ops.start | date:"Y-m-d H:i" }}
{{ ops.duration }} {{ ops.fc }} {{ ops.details }} {{ ops.post_time}}{{ ops.eve_character }}
{% else %}
No fleet operations found.
{% endif %}
{% include 'bundles/moment-js.html' with locale=True %} {% endblock content %}