diff --git a/ihatemoney/templates/list_bills.html b/ihatemoney/templates/list_bills.html index 6f2fbbaa..79e25262 100644 --- a/ihatemoney/templates/list_bills.html +++ b/ihatemoney/templates/list_bills.html @@ -117,7 +117,6 @@
{{ _("When?") }} - {{ _("Bill Type") }} {{ _("Who paid?") }} {{ _("For what?") }} {{ _("For whom?") }} @@ -133,7 +132,6 @@ {{ bill.date }} - {{ bill.bill_type.value }} {{ bill.payer }} {{ bill.what }} {% if bill.owers|length == g.project.members|length -%} diff --git a/ihatemoney/web.py b/ihatemoney/web.py index a93317a2..32ce979d 100644 --- a/ihatemoney/web.py +++ b/ihatemoney/web.py @@ -866,7 +866,7 @@ def settle(amount, ower_id, payer_id): payer_id=ower_id, project_default_currency=g.project.default_currency, bill_type="Reimbursement", - what="settlement", + what="Settlement", ) session.update()