From 91b078a0c3eee382e76e8fdd7a42501d17cbf269 Mon Sep 17 00:00:00 2001 From: Swapnil9693 Date: Tue, 24 Mar 2026 16:16:43 +0530 Subject: [PATCH] edit_invoice html removed --- templates/edit_invoice.html | 207 ++++++++++++++++++++++++++++++++++++ 1 file changed, 207 insertions(+) create mode 100644 templates/edit_invoice.html diff --git a/templates/edit_invoice.html b/templates/edit_invoice.html new file mode 100644 index 0000000..c2a5f7a --- /dev/null +++ b/templates/edit_invoice.html @@ -0,0 +1,207 @@ +{% extends 'base.html' %} +{% block content %} + + + + + Edit Invoice + + + + + + + +
+

Edit Invoice

+ + + + +
+ + +
+
+ + + + +
+
+ + +
+
+ + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ {% set seen_types = [] %} + {% for hold in invoice.hold_amounts %} + {% if hold.hold_type not in seen_types %} + {% set _ = seen_types.append(hold.hold_type) %} +
+ + + + + +
+ {% endif %} + {% endfor %} +
+ + +
+ +
+ + +
+
+ + +
+
+ + +
+
+ + + +
+
+ + + + + +{% endblock %} \ No newline at end of file