Improve web page
This commit is contained in:
parent
133abfe195
commit
c53656c427
|
@ -2,68 +2,50 @@
|
|||
<html lang="fr">
|
||||
<head>
|
||||
<title>Zero Escape: Radical Outcome</title>
|
||||
|
||||
<style>
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
th, td {
|
||||
border: 1px solid black;
|
||||
}
|
||||
</style>
|
||||
<meta charset="utf-8">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Scores Nonary Game: Ambidex Edition</h1>
|
||||
|
||||
<h2>Tableau des scores</h2>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Joueur</th>
|
||||
<th>Score</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<hr>
|
||||
|
||||
<h2>Tableau des scores</h2>
|
||||
|
||||
<table class="table table-striped">
|
||||
<tbody>
|
||||
{% for player in game.players.values() %}
|
||||
<tr>
|
||||
<td>{{ player.name }}</td>
|
||||
<td>{{ player.score }}{% if player.score <= 0 %} ☠️ {% elif player.score >= 9 %} 9️⃣ {% endif %}</td>
|
||||
</tr>
|
||||
{% for player in game.players.values() %}
|
||||
<th scope="row">{{ player.name }}</th>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
<tr>
|
||||
{% for player in game.players.values() %}
|
||||
<td>{{ player.score }}{% if player.score <= 0 %} ☠️ {% elif player.score >= 9 %} 9️⃣ {% endif %}</td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<b>Tour actuel :</b>
|
||||
{{ game.rounds|length }}
|
||||
</li>
|
||||
<li>
|
||||
<b>État :</b>
|
||||
{% if game.state.value == 0 %}
|
||||
<span style="color: orange;">En préparation ...</span>
|
||||
{% elif game.state.value == 1 %}
|
||||
<span style="color: red;">Votes en cours ...</span>
|
||||
{% else %}
|
||||
<span style="color: green;">Résultats du tour</span>
|
||||
{% endif %}
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
<h2>Récapitulatif par tour</h2>
|
||||
|
||||
<div class="row">
|
||||
{% for round in game.rounds if admin or game.state.value > 0 or round.round < game.rounds|length %}
|
||||
<div class="col-sm-3 table-responsive">
|
||||
<h3>Tour n°{{ round.round }}</h3>
|
||||
<hr>
|
||||
|
||||
<table>
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Salle</th>
|
||||
<th>Équipes</th>
|
||||
<th>Vote</th>
|
||||
<th scope="col">Salle</th>
|
||||
<th scope="col">Équipes</th>
|
||||
<th scope="col">Vote</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
|
@ -72,7 +54,7 @@
|
|||
{% for vote in room.votes %}
|
||||
<tr>
|
||||
{% if loop.index0 == 0 %}
|
||||
<td rowspan="2">{{ room.room.value }}</td>
|
||||
<th scope="row" rowspan="2">{{ room.room.value }}</th>
|
||||
{% endif %}
|
||||
<td>{{ vote.player1.name|default('<em>personne</em>')|safe }}{% if vote.player2 %}, {{ vote.player2.name }}{% endif %}</td>
|
||||
{% if round.round != game.rounds|length or game.state.value == 2 or admin %}
|
||||
|
@ -86,6 +68,9 @@
|
|||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue