diff options
Diffstat (limited to 'budget')
| -rw-r--r-- | budget/templates/list_bills.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/budget/templates/list_bills.html b/budget/templates/list_bills.html index e763b03..895bb37 100644 --- a/budget/templates/list_bills.html +++ b/budget/templates/list_bills.html @@ -83,7 +83,7 @@ <td>{{ bill.payer }}</td> <td>{{ bill.what }}</td> <td>{% for ower in bill.owers %}{{ ower.name }} {% endfor %}</td> - <td>{{ bill.amount }} ({{ bill.pay_each() }} {{ _("each") }})</td> + <td>{{ "%0.2f"|format(bill.amount) }} ({{ "%0.2f"|format(bill.pay_each()) }} {{ _("each") }})</td> <td><a href="{{ url_for(".edit_bill", bill_id=bill.id) }}">{{ _("edit") }}</a> <a class="delete" href="{{ url_for(".delete_bill", bill_id=bill.id) }}">{{ _("delete") }}</a></td> </tr> |
