{% extends "fitcheck/base.html" %} {% load i18n %} {% block fitcheck_content %} {% if submission.verdict == "C" %}
{% elif submission.verdict == "S" %}
{% elif submission.verdict == "N" %}
{% else %}
{% endif %}
{{ submission.get_verdict_display }}
{{ submission.doctrine_fit.name }} (v{{ submission.fit_version }}) {% if submission.doctrine %} {{ submission.doctrine.name }} {% else %} {% translate "(source defaults)" %} {% endif %} · {{ submission.get_source_display }} · {{ submission.character|default:submission.user }} · {{ submission.created_at|date:"SHORT_DATETIME_FORMAT" }}
{% include "fitcheck/partials/status_badge.html" %} {% if submission.is_stale %} {% translate "stale" %} {% endif %}
{% if mutated_items %}
{% translate "Mutated module stats:" %} {% for item in mutated_items %} {{ item.eve_type.name }} {% if item.mutation_source == "ESI" %} {{ item.get_mutation_source_display }} {% elif item.mutation_source == "MAN" %} {{ item.get_mutation_source_display }} {% else %} {{ item.get_mutation_source_display }} {% endif %} {% endfor %}
{% endif %} {% if submission.review_comment %}
{% translate "Reviewer comment" %} ({{ submission.reviewed_by }}): {{ submission.review_comment|linebreaksbr }}
{% endif %}
{% if can_recheck %}
{% csrf_token %}
{% endif %} {% if can_delete %}
{% csrf_token %}
{% endif %}
{% include "fitcheck/partials/findings_table.html" %} {% if show_feb_panel %} {% comment %}FEB is informational (not graded) so it isn't in the findings table; render it as the last framed section, below Boosters.{% endcomment %}
{% include "fitcheck/partials/section_icon.html" with code="FEB" %} {% translate "Frigate Escape Bay" %} {% translate "(informational, not part of the compliance check)" %}
{% if feb_type %}
{{ feb_type.name }} {% if feb_type.eve_group %}
{{ feb_type.eve_group.name }}
{% endif %}
{% elif submission.frigate_escape_bay_type_id %}
{% translate "A ship of type" %} {{ submission.frigate_escape_bay_type_id }} {% translate "(unrecognized) was in the bay at submission time." %}
{% else %}
{% translate "Empty." %}
{% endif %}
{% endif %}
{% if can_review %}
{% translate "Review Decision" %}
{% if missing_multibuy %} {{ missing_multibuy|json_script:"missing-multibuy" }} {% endif %}
{% csrf_token %}
{% endif %} {% if submitted_items %}
{% translate "Submitted Loadout" %} {% translate "(click to expand - everything captured from this submission, including bay contents)" %}
{% regroup submitted_items by get_section_display as loadout_sections %}
{% for sec in loadout_sections %}
{{ sec.grouper }}
    {% for item in sec.list %}
  • {{ item.eve_type.name }} {% if item.quantity > 1 %} ×{{ item.quantity }} {% endif %}
  • {% endfor %}
{% endfor %}
{% endif %}
{% if submission.eft_text %}
{% translate "Submitted Fit (EFT)" %} {% translate "(click to expand)" %}
{{ submission.eft_text }}
{% endif %}
{% translate "History" %}
    {% for entry in log_entries %}
  • {{ entry.created_at|date:"SHORT_DATETIME_FORMAT" }} · {{ entry.get_action_display }} {% if entry.actor %}({{ entry.actor }}){% endif %} {% if entry.comment %}— {{ entry.comment }}{% endif %}
  • {% endfor %}
{% endblock %}