{% extends "holdfast/skyhook/base.html" %} {% load i18n %} {% load humanize %} {% block holdfast_content %}
{% translate "Needs attention" %}
{{ item_count }}
{{ open_now }} {% translate "window open now" %}
{% translate "Stealable skyhooks" %}
{{ tracked_count }}
{% translate "lava and ice only" %}
{% translate "Under attack" %}
{{ attacked_count }}
{% translate "reinforced or being shot" %}
{# The heading has to follow the setting, or it will quietly lie about the table under it. #}
{% blocktranslate %}Stealable in the next {{ horizon_hours }} hours{% endblocktranslate %}
{% if not upcoming %}
{% blocktranslate %}No theft window opens in the next {{ horizon_hours }} hours.{% endblocktranslate %}
{% else %}
{% for row in upcoming %} {% endfor %}
{% translate "Opens (UTC)" %} {% translate "Closes" %} {% translate "Planet" %} {% translate "System" %} {% translate "Unsecured" %} {% translate "Over the bar" %}
{{ row.skyhook.theft_start|date:"m-d H:i" }} {% if row.is_open %}{% translate "OPEN" %}{% endif %} {{ row.skyhook.theft_end|date:"m-d H:i" }} {{ row.skyhook.planet_name }} {{ row.skyhook.system_name }} {{ row.total|intcomma }} {% for reagent, bar in row.tripped %}
{{ reagent.type_name }}: {{ reagent.unsecured_stock|intcomma }} ({% translate "bar" %} {{ bar|intcomma }})
{% empty %} {% translate "under every bar" %} {% endfor %}
{% endif %}
{% translate "What wants attention" %}
{% include "holdfast/partials/_feed.html" with empty_message=_("Nothing is being shot and nothing worth collecting is about to open.") %} {% endblock %}