diff options
author | Frederick Yin <fkfd@fkfd.me> | 2021-10-19 21:06:52 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2021-10-19 21:06:52 +0800 |
commit | 5dc9414d9fe790142545b233dcd02d1c355d0ca0 (patch) | |
tree | 06fb13b4cd1f0ef1aea76db7ff0a1c6985f49f03 /jimbrella/templates/index.html | |
parent | 1dfa5659e322136000ac37324e52edaaef5b28ab (diff) |
Flask web server prototype
Diffstat (limited to 'jimbrella/templates/index.html')
-rw-r--r-- | jimbrella/templates/index.html | 23 |
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> |