{% extends 'anomalytracker/base.html' %} {% load i18n %} {% load humanize %} {% block details %}
{% translate "Headline" %}
{{ text }}
{% endblock %} {% block content %}
{% translate "Anomalies" %}
{% if anomalies %}{% for anom in anomalies %} {% empty %} {% endfor %} {% endif %}
{% translate "Status" %} {% translate "System" %} {% translate "Tier" %} {% translate "Ore" %} {% translate "Timer" %} {% translate "Action" %}
{% if anom.is_up %}✅{% else %}❌{% endif %} {{ anom.anom_system.name }} {{ anom.anom_tier.get_tier_display }} {{ anom.ore }} {% if anom.is_timer_active %} {{ anom.time_left_hhmm }} {% translate "left" %} {% endif %} {% if anom.anom_tier.respawn_time != 0 %} {% if anom.is_up %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %} {% endif %}
{% translate 'No mining anomalies tracked.' %}
{% translate "Ice Anomalies" %}
{% if ice_anomalies %}{% for anom in ice_anomalies %} {% empty %} {% endfor %} {% endif %}
{% translate "Status" %} {% translate "System" %} {% translate "Ore" %} {% translate "Timer" %} {% translate "Action" %}
{% if anom.is_up %}✅{% else %}❌{% endif %} {{ anom.anom_system.name }} {{ anom.get_ore_display }} {% if anom.is_timer_active %} {{ anom.time_left_hhmm }} left {% endif %} {% if anom.anom_tier.respawn_time != 0 %} {% if anom.is_up %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %} {% endif %}
{% translate 'No Ice anomalies tracked.' %}
{% endblock %}