{% extends "jury/base.html.twig" %} {% import _self as checkJudgings %} {% import "jury/jury_macros.twig" as macros %} {% block title %}Judging verifier - {{ parent() }}{% endblock %} {% block extrahead %} {{ parent() }} {{ macros.table_extrahead() }} {% endblock %} {% block content %}
{{ numChecked }} submissions checked:
{{ unexpected | length }} unexpected results,
{% if verifyMultiple %}
{{ multiple | length }} automatically verified (multiple outcomes),
{% else %}
{{ multiple | length }} to check manually,
{% endif %}
{{ verified | length }} automatically verified
{{ numUnchecked }} submissions not checked:
{{ earlier | length }} verified earlier,
{{ nomatch | length }} without magic string
| problem | file(s) | actual | expected (one of) | |
|---|---|---|---|---|
| s{{ submitId }} | {% if result.contestProblem is defined %} {{ result.contestProblem | problemBadge }} {% endif %} |
{% if result.files is defined and result.files|length > 0 %}
{% for file in result.files[:3] %}
{{ file.filename }}
{% endfor %}
{% endif %}
|
{% if result is defined and result.actual is defined %} {{ result.actual | printResult }} {% endif %} | {% if result is defined and result.expected is defined %} {% for r in result.expected %} {{ r | printResult }} {% if not loop.last %}, {% endif %} {% endfor %} {% endif %} |