{% extends "holdfast/sov/base.html" %} {% load i18n %} {% load holdfast_tags %} {% block holdfast_content %}
{% blocktranslate %}Industry cost indices for every system the alliance holds, shown the way the game shows them. These are the percentages applied to job fees, so lower is cheaper. Public data, refreshed hourly.{% endblocktranslate %}
{% if not rows %}
{% translate "No cost indices yet. They arrive with the next hourly refresh." %}
{% else %}
{% for row in rows %} {% endfor %}
{% translate "System" %} {% translate "Region" %} {% translate "Manufacturing" %} {% translate "Reaction" %} {% translate "Copying" %} {% translate "Invention" %} {% translate "Research TE" %} {% translate "Research ME" %}
{{ row.system_name }} {{ row.region_name|default:"—" }} {{ row.manufacturing|as_percent }} {{ row.reaction|as_percent }} {{ row.copying|as_percent }} {{ row.invention|as_percent }} {{ row.researching_time_efficiency|as_percent }} {{ row.researching_material_efficiency|as_percent }}

{% translate "Sorted cheapest-to-build first. Use the filter box to narrow by system or region." %}

{% endif %} {% endblock %}