aboutsummaryrefslogtreecommitdiff
path: root/templates/games.j2
blob: 22ea9363cff323d86f7fed7d95c1f9e93f7ead92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="games">
<table>
<tr>
    <th> Court </th>
    <th colspan="2"> Team 1 </th>
    <th colspan="2"> Team 2 </th>
</tr>
{% for game in games %}
    <tr>
        <th>{{ loop.index }}</th>
        <td>{{ game.team1.player1.name }}</th>
        <td>{{ game.team1.player2.name }}</th>
        <td>{{ game.team2.player1.name }}</th>
        <td>{{ game.team2.player2.name }}</th>
    </tr>
{% endfor %}
</table>
</div>