From 769bcbf3f10f59a1bce952c336adeb1804a5cc77 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sun, 31 Jul 2011 23:55:18 +0200 Subject: Makes the computation working. --- budget/templates/compute_bills.html | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'budget/templates/compute_bills.html') diff --git a/budget/templates/compute_bills.html b/budget/templates/compute_bills.html index 8f286cf..4c6fd56 100644 --- a/budget/templates/compute_bills.html +++ b/budget/templates/compute_bills.html @@ -1,4 +1,9 @@ {% extends "layout.html" %} + +{% block top_menu %} +Back to the list +{% endblock %} + {% block content %}

Computations

@@ -12,14 +17,14 @@
- Mark this as payed / processed + Mark this as payed / processed
-{% for name, balance in balances.items() %} - +{% for person, balance in balances.items() %} + {% endfor %}
NameBalance
{{ name }}{{ balance }}
{{ person.name }}{{ balance }}
-- cgit v1.1