{% if limitToTeamIds is null %} {% if showTeamSubmissions or jury %} {% set summaryColspan = 3 %} {% if showAffiliationLogos %} {% set summaryColspan = summaryColspan + 1 %} {% endif %} {% if not enable_ranking %} {% set summaryColspan = summaryColspan - 1 %} {% endif %} Summary {% if enable_ranking %} {% if scoreboard.showPoints %} {% else %} {{ scoreboard.summary.numberOfPoints(sortOrder) }} {% endif %} {% endif %} {% for problem in scoreboard.problems %} {% set summary = scoreboard.summary.problem(problem.probid) %} {% set link = null %} {% if jury %} {% set link = path('jury_problem', {'probId': problem.probid}) %} {% endif %} {{ summary.numSubmissionsCorrect[sortOrder] ?? 0 }}
{{ summary.numSubmissions[sortOrder] ?? 0 - summary.numSubmissionsCorrect[sortOrder] ?? 0 }}
{{ summary.numSubmissionsPending[sortOrder] ?? 0 }}
{% if summary.bestTimeInMinutes(sortOrder) is not null %} {{ summary.bestTimeInMinutes(sortOrder) }}min {% else %} n/a {% endif %}
{% endfor %} {% endif %} {% endif %}