{{ t("batch.title") }}
{% if outcome.skipped %}
{{ t("batch.summary_skipped", ok=outcome.ok, failed=outcome.failed, skipped=outcome.skipped) }}
{% else %}
{{ t("batch.summary", ok=outcome.ok, failed=outcome.failed) }}
{% endif %}
{% for entry in outcome.entries %}
{% include "partials/batch_row.html" %}
{% endfor %}
{% if outcome.final %}
{% with outcome = outcome.final %}
{% include "partials/result_tabs.html" %}
{% endwith %}
{% endif %}
{% if outcome.final_security %}
{% with outcome = outcome.final_security %}
{% include "partials/security_result.html" %}
{% endwith %}
{% endif %}