{% extends "fitcheck/base.html" %} {% load i18n %} {% block fitcheck_content %}
{% translate "Member inventory" %} · {% blocktranslate %}scope: {{ scope_label }}{% endblocktranslate %}

{{ fit.name }}

{{ fit.ship_type.name }} · v{{ fit.version }}
{% if show_corp_filter %}
{% endif %}
{% if filters.q or filters.corp or filters.granted %} {% translate "Clear" %} {% endif %}
{% if without_token %}
{{ without_token|length }} {% translate "pilot(s) in scope have not granted an asset-scope token and were skipped:" %}
{% for character in without_token %} {{ character.character_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %} {% for name, reason in errors.items %}
{{ name }}: {{ reason }}
{% endfor %}
{{ ship_rows|length }} {% translate "ship(s) of this hull found in scope" %}
{% for row in ship_rows %}
{{ row.ship.ship_name|default:row.ship.type_name }}
{{ row.ship.character_name }}
{{ row.ship.location_name }} {% if row.ship.system_name %}
{{ row.ship.system_name }}{% if row.ship.region_name %} · {{ row.ship.region_name }}{% endif %} {% endif %}
{% if row.verdict == "COMPLIANT" %} {% translate "Compliant" %} {% elif row.verdict == "COMPLIANT_SUBS" %} {% translate "Compliant (subs)" %} {% elif row.verdict == "NON_COMPLIANT" %} {% translate "Non-compliant" %} {% elif row.verdict == "ERROR" %} {% translate "Error" %} {% else %} {% translate "Not validated" %} {% endif %} {% if row.submission_pk %} {% translate "details" %} {% endif %}
{% empty %}
{% translate "No ships of this hull found among the pilots in scope." %}
{% endfor %}
{% endblock %}