Invoices

+ New invoice

<% if @invoices.empty? %>

No invoices yet. Create the first one.

<% else %>
<% @invoices.each do |inv| %> <% end %>
Number Client Issued Total Status
<%= inv.number %> <%= inv.client_name %> <%= inv.issued_on.strftime('%Y-%m-%d') %> <%= inv.currency %> <%= '%.2f' % inv.total %> <%= inv.status %> view
<% end %>