guesses display order fix

This commit is contained in:
Jakub Senderák
2020-04-22 22:48:53 +02:00
parent f4fd27a5c1
commit 6ebff98db7
+1 -1
View File
@@ -38,7 +38,7 @@
<tbody> <tbody>
<tr> <tr>
<th class="state_row_header">Tipy v tomto kole:</th> <th class="state_row_header">Tipy v tomto kole:</th>
{% for player in status['active_round_guesses'] %} {% for player in range(4) %}
<td class="points">{{ status['active_round_guesses'][player] }}</td> <td class="points">{{ status['active_round_guesses'][player] }}</td>
{% endfor %} {% endfor %}
</tr> </tr>