From a97eee68b16fd9180d897f12f5b8fe27bac3ae4c Mon Sep 17 00:00:00 2001 From: Patrick Gansterer Date: Wed, 17 Feb 2016 16:11:40 +0100 Subject: [PATCH] Make date clickable in finance overview #392 --- app/views/finance/index.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/finance/index.html.haml b/app/views/finance/index.html.haml index 2b4f8503..976b89bb 100644 --- a/app/views/finance/index.html.haml +++ b/app/views/finance/index.html.haml @@ -15,7 +15,7 @@ %tbody - for invoice in @unpaid_invoices %tr - %td= format_date(invoice.date) + %td= link_to h(format_date(invoice.date)), finance_invoice_path(invoice) %td.numeric= number_to_currency(invoice.amount) %td= invoice.supplier.name %td= link_to t('ui.edit'), edit_finance_invoice_path(invoice), class: 'btn btn-mini'