Sha256: b050e2e2ff3bc78a46c9cdb37893cd898771bdfd3fb7722047b92763fdfba0f5
Contents?: true
Size: 508 Bytes
Versions: 14
Compression:
Stored size: 508 Bytes
Contents
<h1>Listing orders</h1> <table> <tr> <th>Name</th> <th>Amount</th> <th></th> <th></th> <th></th> </tr> <% @orders.each do |order| %> <tr> <td><%= order.name %></td> <td><%= order.amount %></td> <td><%= link_to 'Show', order %></td> <td><%= link_to 'Edit', edit_order_path(order) %></td> <td><%= link_to 'Destroy', order, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Order', new_order_path %>
Version data entries
14 entries across 14 versions & 1 rubygems