From 6d1300640051baa23360846197b54e1e69ae32e3 Mon Sep 17 00:00:00 2001 From: Joris Guyonvarch Date: Sat, 18 Apr 2026 11:04:47 +0200 Subject: Add balancing capabilities If payment are too unbalanced, it’s easier to make a transfer. --- templates/balancing/update.html | 105 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 templates/balancing/update.html (limited to 'templates/balancing/update.html') diff --git a/templates/balancing/update.html b/templates/balancing/update.html new file mode 100644 index 0000000..9c98e93 --- /dev/null +++ b/templates/balancing/update.html @@ -0,0 +1,105 @@ +{% extends "base.html" %} + +{% block title %} + Équilibrage {{ id }} +{% endblock title %} + +{% block main %} + +
+

+ + Retour aux équilibrages + +

+ + {% if error %} +
{{ error }}
+ {% endif %} + + {% if not balancing %} + + L’équilibrage n’a pas été trouvé. + + {% else %} + +
+

Modification

+ + + + {% set source = form.source or balancing.source %} + + + + {% set destination = form.destination or balancing.destination %} + + + +
+ +
+
+ +
+

Suppression

+ + + +
+ +
+
+ + {% endif %} +
+ +{% endblock main %} -- cgit v1.2.3