summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2024-04-12 10:29:29 +0200
committerKaran Jayachandra <karan.jayachandra@nxp.com>2024-04-12 10:29:29 +0200
commitc58caf5b8b8801ba826b0ff6b241d7f25a333bc8 (patch)
tree45b22248fd4fbcf23046ef30707da8ff1f65c880 /templates/index.html
parente6939bb6421862a12048449094f2c55e6e9e401b (diff)
Added a more cleaner application
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html51
1 files changed, 0 insertions, 51 deletions
diff --git a/templates/index.html b/templates/index.html
deleted file mode 100644
index db4a991..0000000
--- a/templates/index.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!doctype html>
-<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
-
-<html>
- <head>
- <title>Match Up!</title>
- </head>
- <body>
- <h1>Match Up!</h1>
- <div class="row">
- <div style=" float: left; width: 60%">
- <table>
- <thead>
- <tr>
- <th> Court </th>
- <th> Team 1 </th>
- <th> Team 2 </th>
- </tr>
- </thead>
- <tbody>
- {% for game in game_list %}
- <tr>
- <td width="10%"> {{game.court_number}} </td>
- <td width="40%"> {{game.team_1.player_1.get_name()}} <br> {{game.team_1.player_2.get_name()}} </td>
- <td width="40%"> {{game.team_2.player_1.get_name()}} <br> {{game.team_2.player_2.get_name()}} </td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- </div>
- <div style=" float: left; width: 30%">
- <table>
- <thead>
- <tr>
- <th> Player </th>
- </tr>
- </thead>
- <tbody>
- {% for player in player_list %}
- <tr>
- <td style={% if player.status %} "color : green" {% else %} "color : red" {% endif %}>
- {{ player.get_name() }}
- </td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- </div>
- </div>
- </body>
-</html> \ No newline at end of file