aboutsummaryrefslogtreecommitdiff
path: root/templates/games.j2
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-11 18:56:48 +0200
committerKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-11 18:56:48 +0200
commit20d668454a1e1d8f17f7e5d4d25f667f62381cd1 (patch)
tree5e13fc89296e4bb8e48c7296c51d4dd2122a4a63 /templates/games.j2
parent0db0ff2f1c712273ac48cb859c24253b1efa8384 (diff)
Working with Bulma CSS now
Diffstat (limited to 'templates/games.j2')
-rw-r--r--templates/games.j212
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