diff options
Diffstat (limited to 'templates/games.j2')
| -rw-r--r-- | templates/games.j2 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/games.j2 b/templates/games.j2 index 0285de1..d5afef1 100644 --- a/templates/games.j2 +++ b/templates/games.j2 @@ -10,11 +10,11 @@ <tbody> {% for game in games %} <tr {% if game.team1.player1 == 'RESERVED' %} class="is-danger" {% endif %}> - <th align="center">{{ game.court }}</th> - <td>{{ game.team1.player1 }}</th> - <td>{{ game.team1.player2 }}</th> - <td>{{ game.team2.player1 }}</th> - <td>{{ game.team2.player2 }}</th> + <th align="center" style="width: 8%;">{{ game.court }}</th> + <td style="width: 23%;">{{ game.team1.player1 }}</th> + <td style="width: 23%;">{{ game.team1.player2 }}</th> + <td style="width: 23%;">{{ game.team2.player1 }}</th> + <td style="width: 23%;">{{ game.team2.player2 }}</th> </tr> {% endfor %} </tbody> |
