{% load i18n humanize %}
{% if fit_title %}
{{ fit_title }}
{% endif %}
Ship {{ ship_type_id }}
{% for m in slots.high %}
{{ m.name }}
{% empty %}
{% trans "No highs" %}
{% endfor %}
{% for m in slots.mid %}
{{ m.name }}
{% empty %}
{% trans "No mids" %}
{% endfor %}
{% for m in slots.low %}
{{ m.name }}
{% empty %}
{% trans "No lows" %}
{% endfor %}
{% for m in slots.sub %}
{{ m.name }}
{% empty %}
{% trans "No subsystems" %}
{% endfor %}
{% for m in slots.rig %}
{{ m.name }}
{% empty %}
{% trans "No rigs" %}
{% endfor %}
{% trans "Discrepancies (missing / extra modules)" %}
{% if penalty_scheme_name %}{% trans "Scheme" %}: {{ penalty_scheme_name }} · {% endif %} {% trans "Total penalty" %}: {{ payout_penalty_pct|floatformat:2 }}%{% if penalty_capped %} ({% trans "capped" %}){% endif %} {% if penalty_wrong_count %} · {% trans "Wrong modules" %}: {{ penalty_wrong_count }}{% endif %}
{% trans "Additional Details" %}
{% if kill_comment %}
{% trans "Reviewer Comment" %}

{{ kill_comment }}

{% endif %} {% if fitcheck_notes %}
{% trans "Fit Check Notes" %}
{{ fitcheck_notes }}
{% endif %}
{% trans "Loss Values" %}
{% trans "Hull value" %}: {{ hull_price_isk|floatformat:2|intcomma }} ISK
{% trans "Fit value" %}: {{ fit_price_isk|floatformat:2|intcomma }} ISK
{% trans "Total (hull + fit)" %}: {{ loss_total_isk|floatformat:2|intcomma }} ISK
{% trans "Payout Calculation" %}
{% if payout_base > 0 %}
{% trans "Base reward" %}: {{ payout_base|floatformat:2|intcomma }} ISK
{% endif %} {% load num %}
{% trans "Penalty" %}: {{ payout_penalty_pct|floatformat:2|intcomma }}% (≈ {% if payout_penalty_pct > 0 %} {% if payout_base > 0 %} {{ payout_penalty_pct|percent_of:payout_base|floatformat:2|intcomma }} {% else %} {{ payout_penalty_pct|percent_of:loss_total_isk|floatformat:2|intcomma }} {% endif %} {% else %}0{% endif %} ISK)
{% trans "Suggested payout" %}: {{ payout_suggested|floatformat:2|intcomma }} ISK
{% if payout_override is not None %}
{% trans "Override payout" %}: {{ payout_override|floatformat:2|intcomma }} ISK
{% endif %} {% if payout_actual is not None %}
{% trans "Adjusted Payout" %}: {{ payout_actual|floatformat:2|intcomma }} ISK
{% else %}
{% trans "Payout" %}: {{ payout_final|floatformat:2|intcomma }} ISK
{% endif %}