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

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 %}
Details Objective System Structure Eve Time Local Time CreatorAction
{{ closest_timer.details }} {% ifequal closest_timer.objective "Hostile" %}
Hostile
{% endifequal %} {% ifequal closest_timer.objective "Friendly" %}
Friendly
{% endifequal %} {% ifequal closest_timer.objective "Neutral" %}
Neutral
{% 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 "TCU" %}
TCU
{% endifequal %} {% ifequal closest_timer.structure "Other" %}
Other
{% endifequal %}
{{ closest_timer.eve_time | date:"Y-m-d H:i" }} {{ 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 %}
Details Objective System Structure Eve Time Local Time CreatorAction
{{ timer.details }} {% ifequal timer.objective "Hostile" %}
Hostile
{% endifequal %} {% ifequal timer.objective "Friendly" %}
Friendly
{% endifequal %} {% ifequal timer.objective "Neutral" %}
Neutral
{% 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 "TCU" %}
TCU
{% endifequal %} {% ifequal timer.structure "Other" %}
Other
{% endifequal %}
{{ timer.eve_time | date:"Y-m-d H:i" }}
{{ timer.eve_character.character_name }}
{% endblock content %}