Sha256: 178360ba3d1ed53975765b74279ede130845f6b4b46d24ba476f3c9af56c022b
Contents?: true
Size: 660 Bytes
Versions: 19
Compression:
Stored size: 660 Bytes
Contents
<h1>Listing invoices</h1> <table> <tr> <th>Title</th> <th>Total paid</th> <th>Total charged</th> <th>Paid</th> <th></th> <th></th> <th></th> </tr> <% @invoices.each do |invoice| %> <tr> <td><%= invoice.title %></td> <td><%= invoice.total_paid %></td> <td><%= invoice.total_charged %></td> <td><%= invoice.paid %></td> <td><%= link_to 'Show', invoice %></td> <td><%= link_to 'Edit', edit_invoice_path(invoice) %></td> <td><%= link_to 'Destroy', invoice, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Invoice', new_invoice_path %>
Version data entries
19 entries across 19 versions & 1 rubygems