{% extends "fitcheck/base.html" %} {% load i18n %} {% block fitcheck_content %}
{% translate "Sandbox check - nothing was saved." %} {% translate "These results are not in the review queue and cannot be reviewed. Submissions that count toward compliance come from My Ships (Pilot Fittings), which validates the ships you actually own." %}
{% blocktranslate with fit=fit.name %}Graded against "{{ fit }}"{% endblocktranslate %} {% if parsed.fit_name %}· {{ parsed.fit_name }}{% endif %}
{% translate "Back to Test a Fit" %}
{% for result in results %} {% if result.verdict == "C" %}
{% elif result.verdict == "S" %}
{% elif result.verdict == "N" %}
{% else %}
{% endif %}
{{ result.verdict_display }}
{{ fit.name }} (v{{ fit.version }}) {% if result.doctrine %} {{ result.doctrine.name }} {% else %} {% translate "(source defaults)" %} {% endif %} · {% translate "sandbox - not saved" %}
{% include "fitcheck/partials/findings_table.html" with findings=result.findings %}
{% endfor %} {% endblock %}