Skip to content

Commit 718d082

Browse files
Make rank column appear after team for both FTS and region winners.
1 parent 634c2b3 commit 718d082

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webapp/templates/jury/export/results.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,16 @@
6565
<thead>
6666
<tr>
6767
<th scope="col">Region</th>
68-
<th scope="col">Rank</th>
6968
<th scope="col">Team</th>
69+
<th scope="col">Rank</th>
7070
</tr>
7171
</thead>
7272
<tbody>
7373
{% for row in regionWinners %}
7474
<tr>
7575
<th scope="row">{{ row.group }}</th>
76-
<td>{{ row.rank }}</td>
7776
<td>{{ row.team }}</td>
77+
<td>{{ row.rank }}</td>
7878
</tr>
7979
{% endfor %}
8080
</tbody>

0 commit comments

Comments
 (0)