Improve web page
This commit is contained in:
		@@ -2,90 +2,75 @@
 | 
			
		||||
<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>
 | 
			
		||||
    <h1>Scores Nonary Game: Ambidex Edition</h1>
 | 
			
		||||
    <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>
 | 
			
		||||
 | 
			
		||||
        <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>
 | 
			
		||||
        {% endfor %}
 | 
			
		||||
        </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>
 | 
			
		||||
 | 
			
		||||
    <h2>Récapitulatif par tour</h2>
 | 
			
		||||
 | 
			
		||||
    {% for round in game.rounds if admin or game.state.value > 0 or round.round < game.rounds|length %}
 | 
			
		||||
        <h3>Tour n°{{ round.round }}</h3>
 | 
			
		||||
 | 
			
		||||
        <table>
 | 
			
		||||
            <thead>
 | 
			
		||||
            <tr>
 | 
			
		||||
                <th>Salle</th>
 | 
			
		||||
                <th>Équipes</th>
 | 
			
		||||
                <th>Vote</th>
 | 
			
		||||
            </tr>
 | 
			
		||||
            </thead>
 | 
			
		||||
        <h2>Tableau des scores</h2>
 | 
			
		||||
 | 
			
		||||
        <table class="table table-striped">
 | 
			
		||||
            <tbody>
 | 
			
		||||
            {% for room in round.rooms %}
 | 
			
		||||
                {% for vote in room.votes %}
 | 
			
		||||
                <tr>
 | 
			
		||||
                    {% if loop.index0 == 0 %}
 | 
			
		||||
                        <td rowspan="2">{{ room.room.value }}</td>
 | 
			
		||||
                    {% 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 %}
 | 
			
		||||
                        <td>{{ vote.vote.value|default('<em>Pas de vote</em>')|safe }}</td>
 | 
			
		||||
                    {% else %}
 | 
			
		||||
                        <td><em>Vote en cours ...</em></td>
 | 
			
		||||
                    {% endif %}
 | 
			
		||||
                </tr>
 | 
			
		||||
 | 
			
		||||
            <tr>
 | 
			
		||||
                {% for player in game.players.values() %}
 | 
			
		||||
                    <th scope="row">{{ player.name }}</th>
 | 
			
		||||
                {% endfor %}
 | 
			
		||||
            {% 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>
 | 
			
		||||
    {% endfor %}
 | 
			
		||||
 | 
			
		||||
        <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 class="table table-striped">
 | 
			
		||||
                        <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th scope="col">Salle</th>
 | 
			
		||||
                            <th scope="col">Équipes</th>
 | 
			
		||||
                            <th scope="col">Vote</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        </thead>
 | 
			
		||||
 | 
			
		||||
                        <tbody>
 | 
			
		||||
                        {% for room in round.rooms %}
 | 
			
		||||
                            {% for vote in room.votes %}
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                {% if loop.index0 == 0 %}
 | 
			
		||||
                                    <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 %}
 | 
			
		||||
                                    <td>{{ vote.vote.value|default('<em>Pas de vote</em>')|safe }}</td>
 | 
			
		||||
                                {% else %}
 | 
			
		||||
                                    <td><em>Vote en cours ...</em></td>
 | 
			
		||||
                                {% endif %}
 | 
			
		||||
                            </tr>
 | 
			
		||||
 | 
			
		||||
                            {% endfor %}
 | 
			
		||||
                        {% endfor %}
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                    </table>
 | 
			
		||||
                </div>
 | 
			
		||||
            {% endfor %}
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
		Reference in New Issue
	
	Block a user