{% extends "public/base.html" %} {% load staticfiles %} {% block title %}Alliance Auth{% endblock %} {% block page_title %}Timer Management{% endblock page_title %} {% block extra_css %}{% endblock extra_css %} {% block content %}

Operation Timers

Current Eve Time: {{ CURRENT_UTC_TIME | date:"Y-m-d H:i" }}

Next Timer

{% if perms.auth.timer_management %} {% endif %} {% if closest_timer %} {% ifequal closest_timer.important True %} {% else %} {% endifequal %} {% if perms.auth.timer_management %} {% endif %} {% endif %}
Fleet Name Fleet Type System Structure Eve Time CreatorAction
{{ closest_timer.name }} {% ifequal closest_timer.fleet_type "Armor" %}
Armor
{% endifequal %} {% ifequal closest_timer.fleet_type "Shield" %}
Shield
{% endifequal %} {% ifequal closest_timer.fleet_type "Other" %}
Other
{% endifequal %}
{{ closest_timer.system }} {{ closest_timer.planet_moon }} {% ifequal closest_timer.structure "I-HUB" %}
I-HUB
{% endifequal %} {% ifequal closest_timer.structure "POCO" %}
POCO
{% endifequal %} {% ifequal closest_timer.structure "POS[S]" %}
POS [S]
{% endifequal %} {% ifequal closest_timer.structure "POS[M]" %}
POS [M]
{% endifequal %} {% ifequal closest_timer.structure "POS[L]" %}
POS [L]
{% endifequal %} {% ifequal closest_timer.structure "Station" %}
Station
{% endifequal %} {% ifequal closest_timer.structure "Other" %}
Other
{% endifequal %}
{{ closest_timer.eve_time | date:"Y-m-d H:i" }} UTC {{ closest_timer.eve_character.character_name }}

Future Timers

{% if perms.auth.timer_management %} {% endif %} {% for timer in timers %} {% ifnotequal timer closest_timer %} {% ifequal timer.important True %} {% else %} {% endifequal %} {% if perms.auth.timer_management %} {% endif %} {% endifnotequal %} {% endfor %}
Fleet Name Fleet Type System Structure Eve Time CreatorAction
{{ timer.name }} {% ifequal timer.fleet_type "Armor" %}
Armor
{% endifequal %} {% ifequal timer.fleet_type "Shield" %}
Shield
{% endifequal %} {% ifequal timer.fleet_type "Other" %}
Other
{% endifequal %}
{{ timer.system }} {{ timer.planet_moon }} {% ifequal timer.structure "I-HUB" %}
I-HUB
{% endifequal %} {% ifequal timer.structure "POCO" %}
POCO
{% endifequal %} {% ifequal timer.structure "POS[S]" %}
POS [S]
{% endifequal %} {% ifequal timer.structure "POS[M]" %}
POS [M]
{% endifequal %} {% ifequal timer.structure "POS[L]" %}
POS [L]
{% endifequal %} {% ifequal timer.structure "Station" %}
Station
{% endifequal %} {% ifequal timer.structure "Other" %}
Other
{% endifequal %}
{{ timer.eve_time | date:"Y-m-d H:i" }} UTC {{ timer.eve_character.character_name }}
{% endblock content %}