diff options
author | Frederick Yin <fkfd@fkfd.me> | 2021-10-20 00:03:07 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2021-10-20 00:03:07 +0800 |
commit | 21880c47ba381221b9a269c0aa2e83b11d8eb945 (patch) | |
tree | 33a53fb6382b5163e98584dd649e02ad7ab998b8 /jimbrella/templates/index.html | |
parent | eedc26ed8b2848487164614e49a4b5647d24c7d1 (diff) |
More work on web console
Diffstat (limited to 'jimbrella/templates/index.html')
-rw-r--r-- | jimbrella/templates/index.html | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/jimbrella/templates/index.html b/jimbrella/templates/index.html index 0304499..00036fc 100644 --- a/jimbrella/templates/index.html +++ b/jimbrella/templates/index.html @@ -2,22 +2,25 @@ <html> <head> <title>JI Umbrella</title> + <link rel="stylesheet" href="static/jimbrella.css" /> </head> <body> - <h1>JI Umbrella Overview</h1> - <table> - <tr> - <td>Total</td> - <td>Available</td> - <td>Lent</td> - <td>Overdue</td> - </tr> - <tr> - <td>{{ total }}</td> - <td>{{ available }}</td> - <td>{{ lent }}</td> - <td>{{ overdue }}</td> - </tr> - </table> + <div id="container"> + <h1>JI Umbrella Overview</h1> + <table class="overview"> + <tr> + <td>Total</td> + <td>Available</td> + <td>Lent</td> + <td>Overdue</td> + </tr> + <tr> + <td>{{ total }}</td> + <td>{{ available }}</td> + <td>{{ lent }}</td> + <td>{{ overdue }}</td> + </tr> + </table> + </div> </body> </html> |