{% extends "holdfast/sov/base.html" %} {% load i18n %} {% block holdfast_content %} {% if not systems %}
{% translate "No sovereignty systems recorded yet. The public sovereignty map task fills this in." %}
{% else %}
{% for system in systems %} {% endfor %}
{% translate "System" %} {% translate "ADM" %} {% translate "Military" %} {% translate "Industrial" %} {% translate "Strategic" %} {% translate "Vulnerability (UTC)" %} {% translate "Held since" %}
{{ system.system_name }} {% if system.is_capital_system %}{% translate "capital" %}{% endif %} {{ system.activity_defense_multiplier|floatformat:2 }} {% if threshold and system.activity_defense_multiplier < threshold %} {% translate "low" %} {% endif %} {{ system.military_level|default_if_none:"-" }} {{ system.industrial_level|default_if_none:"-" }} {{ system.strategic_level|default_if_none:"-" }} {% if system.vulnerability_start %}{{ system.vulnerability_start|date:"H:i" }}–{{ system.vulnerability_end|date:"H:i" }}{% else %}—{% endif %} {{ system.claimed_since|date:"Y-m-d" }}

{% if threshold %} {% blocktranslate %}Rows go red below the ADM threshold, which a SOV manager sets on the settings page.{% endblocktranslate %} {% endif %} {% translate "Straight from the public sovereignty route -- no token needed, and it covers every system the alliance holds whether or not that corporation has registered here." %}

{% endif %} {% endblock %}