diff --git a/orochi/templates/list.html b/orochi/templates/list.html
index 21b6b56..1bc95d1 100644
--- a/orochi/templates/list.html
+++ b/orochi/templates/list.html
@@ -2,90 +2,75 @@
Zero Escape: Radical Outcome
-
-
+
+
+
- Scores Nonary Game: Ambidex Edition
+
+
Scores Nonary Game: Ambidex Edition
-
Tableau des scores
-
-
-
- Joueur |
- Score |
-
-
+
-
- {% for player in game.players.values() %}
-
- {{ player.name }} |
- {{ player.score }}{% if player.score <= 0 %} ☠️ {% elif player.score >= 9 %} 9️⃣ {% endif %} |
-
- {% endfor %}
-
-
-
-
- -
- Tour actuel :
- {{ game.rounds|length }}
-
- -
- État :
- {% if game.state.value == 0 %}
- En préparation ...
- {% elif game.state.value == 1 %}
- Votes en cours ...
- {% else %}
- Résultats du tour
- {% endif %}
-
-
-
-
Récapitulatif par tour
-
- {% for round in game.rounds if admin or game.state.value > 0 or round.round < game.rounds|length %}
-
Tour n°{{ round.round }}
-
-
-
-
- Salle |
- Équipes |
- Vote |
-
-
+ Tableau des scores
+
- {% for room in round.rooms %}
- {% for vote in room.votes %}
-
- {% if loop.index0 == 0 %}
- {{ room.room.value }} |
- {% endif %}
- {{ vote.player1.name|default('personne')|safe }}{% if vote.player2 %}, {{ vote.player2.name }}{% endif %} |
- {% if round.round != game.rounds|length or game.state.value == 2 or admin %}
- {{ vote.vote.value|default('Pas de vote')|safe }} |
- {% else %}
- Vote en cours ... |
- {% endif %}
-
-
+
+ {% for player in game.players.values() %}
+ {{ player.name }} |
{% endfor %}
- {% endfor %}
+
+
+ {% for player in game.players.values() %}
+ {{ player.score }}{% if player.score <= 0 %} ☠️ {% elif player.score >= 9 %} 9️⃣ {% endif %} |
+ {% endfor %}
+
- {% endfor %}
+
+
+
+ Récapitulatif par tour
+
+
+ {% for round in game.rounds if admin or game.state.value > 0 or round.round < game.rounds|length %}
+
+
Tour n°{{ round.round }}
+
+
+
+
+
+ Salle |
+ Équipes |
+ Vote |
+
+
+
+
+ {% for room in round.rooms %}
+ {% for vote in room.votes %}
+
+ {% if loop.index0 == 0 %}
+ {{ room.room.value }} |
+ {% endif %}
+ {{ vote.player1.name|default('personne')|safe }}{% if vote.player2 %}, {{ vote.player2.name }}{% endif %} |
+ {% if round.round != game.rounds|length or game.state.value == 2 or admin %}
+ {{ vote.vote.value|default('Pas de vote')|safe }} |
+ {% else %}
+ Vote en cours ... |
+ {% endif %}
+
+
+ {% endfor %}
+ {% endfor %}
+
+
+
+ {% endfor %}
+
+
\ No newline at end of file