{% extends "holdfast/den/base.html" %} {% load i18n %} {% load humanize %} {% block holdfast_content %}
{% translate "Available" %}
{{ free_count }}
{% translate "of" %} {{ rows|length }} {% translate "temperate sites" %}
{% translate "Hurting a skyhook" %}
{{ impacting_count }}
{% translate "workforce being siphoned" %}
{% blocktranslate %}Who holds a site is deliberately not shown here. What matters to everyone is whether the ground is free, and whether whatever sits on it is costing the alliance workforce.{% endblocktranslate %}
{% if not rows %}
{% translate "No temperate-planet skyhooks visible yet." %}
{% else %}
{% for row in rows %} {% endfor %}
{% translate "Planet" %} {% translate "System" %} {% translate "Availability" %} {% translate "Impact on the skyhook" %}
{{ row.planet }} {{ row.system }} {% if row.is_free %}{% translate "available" %}{% else %}{% translate "taken" %}{% endif %} {% if row.is_impacting %} −{{ row.siphon_percent|floatformat:0 }}% {% translate "workforce" %} ({{ row.siphoned_amount|intcomma }}) {% else %} {% translate "none detected" %} {% endif %} {% if can_claim and row.is_claimable %} {% translate "Claim" %} {% endif %}
{% endif %} {% endblock %}