{% extends "holdfast/skyhook/base.html" %} {% load i18n %} {% load humanize %} {% block holdfast_content %}
{% blocktranslate %}Only skyhooks that hold something a raider can take. Workforce and power flow straight to the sovereignty hub — there is no stock and ESI gives them no theft window, so listing them here would be hundreds of rows of noise.{% endblocktranslate %}
{% if not skyhooks %}
{% translate "No stealable skyhooks tracked yet." %}
{% else %}
{% for skyhook in skyhooks %} {% if skyhook.reagents.all %} {% endif %} {% endfor %}
{% translate "Planet" %} {% translate "System" %} {% translate "Corporation" %} {% translate "State" %} {% translate "Unsecured" %} {% translate "Secured" %} {% translate "Theft window (UTC)" %}
{{ skyhook.planet_name }} {% if not skyhook.has_details %}{% translate "queued" %} {% elif not skyhook.is_active %}{% translate "inactive" %}{% endif %} {{ skyhook.system_name }} {{ skyhook.owner.corporation.corporation_name }} {{ skyhook.get_state_display }} {% if skyhook.reinforce_end %}
{% translate "out" %} {{ skyhook.reinforce_end|date:"m-d H:i" }}
{% endif %}
{{ skyhook.total_unsecured|intcomma }} {{ skyhook.total_secured|intcomma }} {% if skyhook.theft_start %} {% if skyhook.is_theft_window_open %}{% translate "OPEN NOW" %}{% endif %} {{ skyhook.theft_start|date:"m-d H:i" }} → {{ skyhook.theft_end|date:"H:i" }} {% else %}—{% endif %}
{% for reagent in skyhook.reagents.all %} {{ reagent.type_name }}: {{ reagent.unsecured_stock|intcomma }} {% translate "unsecured" %} / {{ reagent.secured_stock|intcomma }} {% translate "secured" %}{% if not forloop.last %}  ·  {% endif %} {% endfor %}

{% translate "Unsecured stock is the part a raider can take once the window opens. Secured stock is safe." %}

{% endif %} {% endblock %}