Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 9 additions & 14 deletions webapp/templates/jury/partials/submission_list.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
{%- endif %}

<th scope="col">time</th>
<th scope="col" colspan="2">team</th>
<th scope="col">team</th>
<th scope="col">problem</th>
<th scope="col">lang</th>
{%- if rejudging is defined %}
Expand All @@ -86,13 +86,13 @@
<th scope="col">ext. score</th>
{% endif %}
{% endif %}
{%- if showTestcases is defined and showTestcases %}
<th scope="col" class="not-sortable not-searchable">test results</th>
{%- endif %}
{% if not showExternalResult or not showExternalTestcases %}
<th scope="col" class="table-button-head-left">verified</th>
<th scope="col" class="table-button-head-right">by</th>
{% endif %}
{%- if showTestcases is defined and showTestcases %}
<th scope="col" class="not-sortable not-searchable table-button-head-right-right">test results</th>
{%- endif %}

</tr>
</thead>
Expand Down Expand Up @@ -130,11 +130,6 @@
<td rowspan="{{ rowSpan }}" class="{{ tdExtraClass }}">
<a href="{{ link }}">{{ submission.submittime | printtime(null, submission.contest) }}</a>
</td>
<td rowspan="{{ rowSpan }}" class="{{ tdExtraClass }}" style="text-align: right;">
<a href="{{ link }}">
{{ submission.team | entityIdBadge }}
</a>
</td>
<td rowspan="{{ rowSpan }}" class="{{ tdExtraClass }}">
<a href="{{ link }}">
{{ submission.team.effectiveName | u.truncate(teamname_max_length, '…') }}
Expand Down Expand Up @@ -204,6 +199,11 @@
</td>
{% endif %}
{% endif %}
{%- if showTestcases is defined and showTestcases %}
<td class="testcase-results{{ tdExtraClass }}">
{{- submission | testcaseResults -}}
</td>
{%- endif %}
{% if not showExternalResult or not showExternalTestcases %}
{%- set claim = false %}
{%- if submission.judgings.first is empty or submission.judgings.first.result is empty -%}
Expand Down Expand Up @@ -246,11 +246,6 @@
</td>
{% endif %}
{% endif %}
{%- if showTestcases is defined and showTestcases %}
<td class="testcase-results{{ tdExtraClass }} table-button-head-right-right">
{{- submission | testcaseResults -}}
</td>
{%- endif %}

</tr>
{% if showExternalResult and showExternalTestcases %}
Expand Down
Loading