{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% load evelinks %} {% get_current_language as LANGUAGE_CODE %} {% block page_title %} {% translate "Structure Timer Management" %} {% endblock page_title %} {% block header_nav_brand %} {% translate "Structure Timers" %} {% endblock header_nav_brand %} {% block header_nav_collapse_right %} {% if perms.auth.timer_management %} {% endif %} {% endblock header_nav_collapse_right %} {% block content %}
{% translate "Current Eve Time:" %}
{% if corp_timers %}
{% translate "Corporation Timers" %}
{% include "timerboard/timertable.html" with timers=corp_timers %}
{% endif %}
{% translate "Upcoming Timers" %}
{% if future_timers %} {% include "timerboard/timertable.html" with timers=future_timers %} {% else %}
{% translate "No upcoming timers." %}
{% endif %}
{% translate "Past Timers" %}
{% if past_timers %} {% include "timerboard/timertable.html" with timers=past_timers %} {% else %}
{% translate "No past timers." %}
{% endif %}
{% endblock content %} {% block extra_javascript %} {% include "bundles/moment-js.html" with locale=True %} {% include "bundles/timers-js.html" %} {% endblock extra_javascript %}