diff options
Diffstat (limited to 'templates/games.j2')
| -rw-r--r-- | templates/games.j2 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/games.j2 b/templates/games.j2 index 83fff7f..b070b16 100644 --- a/templates/games.j2 +++ b/templates/games.j2 @@ -1,10 +1,10 @@ -<div class="games"> -<table> -<tr> +<table class="table is-bordered is-striped is-narrow is-hoverable is-fullwidth" id="games"> +<thead> <th> Court </th> <th colspan="2"> Team 1 </th> <th colspan="2"> Team 2 </th> -</tr> +</thead> +<tbody> {% for game in games %} <tr> <th>{{ game.court.number }}</th> @@ -14,5 +14,5 @@ <td>{{ game.team2.player2.name }}</th> </tr> {% endfor %} -</table> -</div>
\ No newline at end of file +</tbody> +</table>
\ No newline at end of file |
