Skip to content

Commit

Permalink
Make date clickable in finance overview #392
Browse files Browse the repository at this point in the history
  • Loading branch information
paroga authored and wvengen committed Feb 23, 2016
1 parent a42dd07 commit a97eee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/finance/index.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit a97eee6

Please sign in to comment.