From b3db90545c5bd76d4acb6abfe5356e87b0f0cdcf Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Thu, 10 Mar 2011 02:37:21 +0000 Subject: initial import --- templates/compute_bills.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 templates/compute_bills.html (limited to 'templates/compute_bills.html') diff --git a/templates/compute_bills.html b/templates/compute_bills.html new file mode 100644 index 0000000..d1cad15 --- /dev/null +++ b/templates/compute_bills.html @@ -0,0 +1,26 @@ +{% extends "layout.html" %} +{% block content %} +

Computations

+ +
+
    +
  1. For each person, get the list of bills he have to pay
  2. +
  3. Increase the amount this person have to pay
  4. +
  5. At the same time, increase what the payer of the bill have to receive
  6. +
  7. At the end, for each person, substract what he have to pay to what he have to receive
  8. +
+
+ +
+ Mark this as payed / processed +
+ + + + +{% for name, balance in balances.items() %} + +{% endfor %} + +
NameBalance
{{ name }}{{ balance }}
+{% endblock %} -- cgit v1.1