summaryrefslogtreecommitdiff
path: root/jimbrella/templates
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2021-10-19 21:06:52 +0800
committerFrederick Yin <fkfd@fkfd.me>2021-10-19 21:06:52 +0800
commit5dc9414d9fe790142545b233dcd02d1c355d0ca0 (patch)
tree06fb13b4cd1f0ef1aea76db7ff0a1c6985f49f03 /jimbrella/templates
parent1dfa5659e322136000ac37324e52edaaef5b28ab (diff)
Flask web server prototype
Diffstat (limited to 'jimbrella/templates')
-rw-r--r--jimbrella/templates/index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/jimbrella/templates/index.html b/jimbrella/templates/index.html
new file mode 100644
index 0000000..0304499
--- /dev/null
+++ b/jimbrella/templates/index.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>JI Umbrella</title>
+ </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>
+ </body>
+</html>