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

{% trans "Structure Timers" %}
{% if perms.auth.timer_management %} {% trans "Create Structure Timer" %} {% endif %}

{% trans "Current Eve Time:" %}
{% if corp_timers %}

{% trans "Corp Timers" %}

{% if perms.auth.timer_management %} {% endif %} {% for timer in corp_timers %} {% ifequal timer.important True %} {% else %} {% endifequal %} {% if perms.auth.timer_management %} {% endif %} {% endfor %}
{% trans "Details" %} {% trans "Objective" %} {% trans "System" %} {% trans "Structure" %} {% trans "Eve Time" %} {% trans "Local Time" %} {% trans "Creator" %}{% trans "Action" %}
{{ timer.details }} {% ifequal timer.objective "Hostile" %}
{% trans "Hostile" %}
{% endifequal %} {% ifequal timer.objective "Friendly" %}
{% trans "Friendly" %}
{% endifequal %} {% ifequal timer.objective "Neutral" %}
{% trans "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 }}
{% endif %}

{% trans "Next Timers" %}

{% if perms.auth.timer_management %} {% endif %} {% for timer in future_timers %} {% ifequal timer.important True %} {% else %} {% endifequal %} {% if perms.auth.timer_management %} {% endif %} {% endfor %}
{% trans "Details" %} {% trans "Objective" %} {% trans "System" %} {% trans "Structure" %} {% trans "Eve Time" %} {% trans "Local Time" %} {% trans "Creator" %}{% trans "Action" %}
{{ timer.details }} {% ifequal timer.objective "Hostile" %}
{% trans "Hostile" %}
{% endifequal %} {% ifequal timer.objective "Friendly" %}
{% trans "Friendly" %}
{% endifequal %} {% ifequal timer.objective "Neutral" %}
{% trans "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 }}

{% trans "Past Timers" %}

{% if perms.auth.timer_management %} {% endif %} {% for timer in past_timers %} {% ifequal timer.important True %} {% else %} {% endifequal %} {% if perms.auth.timer_management %} {% endif %} {% endfor %}
{% trans "Details" %} {% trans "Objective" %} {% trans "System" %} {% trans "Structure" %} {% trans "Eve Time" %} {% trans "Local Time" %} {% trans "Creator" %}{% trans "Action" %}
{{ timer.details }} {% ifequal timer.objective "Hostile" %}
{% trans "Hostile" %}
{% endifequal %} {% ifequal timer.objective "Friendly" %}
{% trans "Friendly" %}
{% endifequal %} {% ifequal timer.objective "Neutral" %}
{% trans "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 %}