diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-03-10 02:37:21 +0000 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-03-10 02:37:21 +0000 |
| commit | b3db90545c5bd76d4acb6abfe5356e87b0f0cdcf (patch) | |
| tree | d3ddbd294fc79428948e9dfcb9a4be89702e60e7 /templates/compute_bills.html | |
| download | ihatemoney-mirror-b3db90545c5bd76d4acb6abfe5356e87b0f0cdcf.zip ihatemoney-mirror-b3db90545c5bd76d4acb6abfe5356e87b0f0cdcf.tar.gz ihatemoney-mirror-b3db90545c5bd76d4acb6abfe5356e87b0f0cdcf.tar.bz2 | |
initial import
Diffstat (limited to 'templates/compute_bills.html')
| -rw-r--r-- | templates/compute_bills.html | 26 |
1 files changed, 26 insertions, 0 deletions
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 %} +<h2>Computations</h2> + +<div class="container span-16"> + <ol> + <li>For each person, get the list of bills he have to pay</li> + <li>Increase the amount this person have to pay</li> + <li>At the same time, increase what the payer of the bill have to receive</li> + <li>At the end, for each person, substract what he have to pay to what he have to receive</li> + </ol> +</div> + +<div class="container span-6 last"> + <a class="awesome large green button" href="{{ url_for("reset_bills") }}">Mark this as payed / processed</a> +</div> + +<table> + <thead><tr><th>Name</th><th>Balance</th></tr></thead> + <tbody> +{% for name, balance in balances.items() %} + <tr><td>{{ name }}</td><td>{{ balance }}</td></tr> +{% endfor %} + </tbody> +</table> +{% endblock %} |
