summaryrefslogtreecommitdiff
path: root/jimbrella/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'jimbrella/templates/index.html')
-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>