diff options
Diffstat (limited to 'templates/games.j2')
| -rw-r--r-- | templates/games.j2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/games.j2 b/templates/games.j2 index 55cabf4..50e1087 100644 --- a/templates/games.j2 +++ b/templates/games.j2 @@ -3,14 +3,14 @@ <th colspan="5" align="center"> {{ title }} </th> </thead> <thead> - <th> Court </th> + <th align="center"> Court </th> <th colspan="2" align="center"> Team 1 </th> <th colspan="2" align="center"> Team 2 </th> </thead> <tbody> -{% for _, game in games.items() %} +{% for game in games %} <tr> - <th>{{ game.court }}</th> + <th align="center">{{ game.court }}</th> <td>{{ game.team1.player1 }}</th> <td>{{ game.team1.player2 }}</th> <td>{{ game.team2.player1 }}</th> |
