From 89e78bb4d0ddccea47d8219129b5e8791fb797a6 Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Fri, 26 Jul 2019 16:34:41 +0200 Subject: Remove Added on column from bill list. to avoid breaking anyone's workflow, i've instead use a tooltip to display the creation date. fix #418 --- ihatemoney/templates/list_bills.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'ihatemoney/templates/list_bills.html') diff --git a/ihatemoney/templates/list_bills.html b/ihatemoney/templates/list_bills.html index 98ff683..6ccf0a0 100644 --- a/ihatemoney/templates/list_bills.html +++ b/ihatemoney/templates/list_bills.html @@ -98,12 +98,16 @@ {% if bills.count() > 0 %} - + {% for bill in bills %} - - + -- cgit v1.1
{{ _("Added on") }}{{ _("When?") }}{{ _("Who paid?") }}{{ _("For what?") }}{{ _("For whom?") }}{{ _("How much?") }}{{ _("Actions") }}
{{ _("When?") }}{{ _("Who paid?") }}{{ _("For what?") }}{{ _("For whom?") }}{{ _("How much?") }}{{ _("Actions") }}
{{ bill.creation_date if bill.creation_date else bill.date }}{{ bill.date }} + + {{ bill.date }} + + {{ bill.payer }} {{ bill.what }} {{ bill.owers|join(', ', 'name') }}