From e0ca887623682d059c6513a1ce36228d4e8c4f21 Mon Sep 17 00:00:00 2001 From: Arne Rief Date: Fri, 27 Mar 2026 11:29:40 +0100 Subject: Upload to web repo --- templates/history.html | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 templates/history.html (limited to 'templates/history.html') diff --git a/templates/history.html b/templates/history.html new file mode 100644 index 0000000..e461269 --- /dev/null +++ b/templates/history.html @@ -0,0 +1,51 @@ +{% extends "layout.html" %} + +{% block title %} + Spending History +{% endblock %} + +{% block main %} + +
+ + + + + + + + + + + + +
+
+ + +
+ + + + + + + + + + + {% for item in record %} + + + + + + + {% endfor %} + +
ExpenseCategoryAmountDate
{{ item.comment }}{{ item.category }}- {{ item.amount | usd }}{{ item.date }}
+
+ + + +{% endblock %} -- cgit v1.2.3