From afc93531809913660c3e08b661bc3b1e4b3ddd2d Mon Sep 17 00:00:00 2001 From: Leo Mouyna Date: Sat, 28 Sep 2019 14:16:42 +0200 Subject: feat: Optional field 'external link' in bill form. An optional field has been added to the bill form to add a link to a real bill. A new action button allow user to see this bill. Breaking change with Bill model update for database, a migration is needed. See issue #429. --- ihatemoney/templates/list_bills.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ihatemoney/templates/list_bills.html') diff --git a/ihatemoney/templates/list_bills.html b/ihatemoney/templates/list_bills.html index dddef4d..494969f 100644 --- a/ihatemoney/templates/list_bills.html +++ b/ihatemoney/templates/list_bills.html @@ -134,6 +134,9 @@ {{ _('edit') }} {{ _('delete') }} + {% if bill.external_link %} + {{ _('see') }} + {% endif %} {% endfor %} -- cgit v1.1