From 1fa0cff180d668a8d93d24413fe7832cdbd3e826 Mon Sep 17 00:00:00 2001 From: "A.Avenel" Date: Sun, 7 Apr 2013 20:25:25 +0200 Subject: use "member.id" instead of "member" --- budget/templates/settle_bills.html | 46 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 budget/templates/settle_bills.html (limited to 'budget/templates/settle_bills.html') diff --git a/budget/templates/settle_bills.html b/budget/templates/settle_bills.html new file mode 100644 index 0000000..309642a --- /dev/null +++ b/budget/templates/settle_bills.html @@ -0,0 +1,46 @@ +{% extends "layout.html" %} + +{% block js %} + $('#cancel-form').click(function(){location.href={{ url_for(".list_bills") }};}); +{% endblock %} +{% block navbar %} +
  • {{ _("Bills") }}
  • +
  • {{ _("Settle") }}
  • +{% endblock %} + +{% block sidebar %} + +{% endblock %} + + +{% block content %} + + + + {% for bill in bills %} + + + + + + {% endfor %} + +
    {{ _("Who pays?") }}{{ _("To whom?") }}{{ _("How much?") }}
    {{ bill.ower }}{{ bill.payer }}{{ "%0.2f"|format(bill.amount) }}
    + +{% endblock %} -- cgit v1.1