{% extends "fitcheck/base.html" %} {% load i18n %} {% block fitcheck_content %}
{% translate "Import the fittings you've saved in-game (Fitting window) and validate them against the published standards. Only you see your results." %}
{% translate "Back" %}
{% if characters_without_token %}
{% translate "These characters have no saved-fittings token yet:" %} {% for character in characters_without_token %} {{ character.character_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% translate "Add saved-fittings token" %}
{% endif %} {% if groups %}
{% csrf_token %} {% for group in groups %}
{{ group.character.character_name }} {{ group.fittings|length }} {% translate "saved fitting(s)" %}
{% for f in group.fittings %} {% empty %} {% endfor %}
{% if f.ship_type_id %} {% endif %} {{ f.name }} {{ f.item_count }} {% translate "items" %}
{% translate "No saved fittings on this character." %}
{% endfor %}
{% elif not characters_without_token %}
{% translate "No saved fittings found on your characters." %}
{% endif %} {% endblock %}