diff options
Diffstat (limited to 'budget/templates')
| -rw-r--r-- | budget/templates/settle_bills.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/budget/templates/settle_bills.html b/budget/templates/settle_bills.html index 309642a..e2041f5 100644 --- a/budget/templates/settle_bills.html +++ b/budget/templates/settle_bills.html @@ -34,9 +34,9 @@ <thead><tr><th>{{ _("Who pays?") }}</th><th>{{ _("To whom?") }}</th><th>{{ _("How much?") }}</th></tr></thead> <tbody> {% for bill in bills %} - <tr class="{{ loop.cycle("odd", "even") }}" owers={{bill.owers|join(',','id')}} payer={{bill.payer.id}}> + <tr class="{{ loop.cycle("odd", "even") }}" receiver={{bill.receiver.id}}> <td>{{ bill.ower }}</td> - <td>{{ bill.payer }}</td> + <td>{{ bill.receiver }}</td> <td>{{ "%0.2f"|format(bill.amount) }}</td> </tr> {% endfor %} |
