{% extends "holdfast/skyhook/base.html" %} {% load i18n %} {% load humanize %} {% block holdfast_content %}
| {% 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 %}