{% extends "fitcheck/base.html" %} {% load i18n %} {% block fitcheck_content %} {% if not sde_loaded %}
{% translate "EVE game data is still loading in the background. Ship details may be incomplete until it finishes - reload this page in a minute. If it never completes, an administrator should run" %} python manage.py fitcheck_load_sde.
{% endif %} {% if inventory.characters_without_token %}
{% translate "These characters need ESI access before their ships show here:" %} {% for character in inventory.characters_without_token %} {{ character.character_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% translate "Connect ESI access" %}
{% endif %}
{% translate "One grant covers everything: your ship inventory, private-structure (Citadel) names with system/region, the implants in your active clone, and saving fits to EVE. Scopes you've already granted to another Auth app - or that corptools provides - are reused, so you're only asked for what's missing." %}
{% translate "Connect / refresh ESI access" %}
{% for name, reason in inventory.errors.items %}
{{ name }}: {{ reason }}
{% endfor %} {% if filters.type_id %}
{% translate "Pre-filtered to" %} {{ filters.type_name|default:_("this hull") }} {% translate "from the fitting page." %}
{% translate "Show all ships" %}
{% endif %}
{% if filters.type_id %} {% endif %}
{% if filters.character or filters.location or filters.group or filters.q %} {% translate "Clear" %} {% endif %} {% translate "Connect ESI access" %}
{% csrf_token %}
{{ ships|length }} {% translate "ships" %} · 0 {% translate "selected" %}
{% for ship in ships %}
{% empty %}
{% if filters.type_id %} {% blocktranslate with hull=filters.type_name|default:_("this hull") %}You don't own a {{ hull }} on this account - it scans only the characters under the Auth account you're logged into.{% endblocktranslate %} {% else %} {% translate "No ships found - adjust the filters, or connect ESI access above." %} {% endif %}
{% endfor %}
{% endblock %} {% block extra_javascript %} {% endblock %}