Sha256: 2c4bc3265ea2ba248878c1b4f579b41a2d1c576da4ffa03f1b208345713b3ed8
Contents?: true
Size: 464 Bytes
Versions: 39
Compression:
Stored size: 464 Bytes
Contents
<h1>Listing orders</h1> <table> <thead> <tr> <th colspan="3"></th> </tr> </thead> <tbody> <% @orders.each do |order| %> <tr> <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 %> </tbody> </table> <br> <%= link_to 'New Order', new_order_path %>
Version data entries
39 entries across 39 versions & 3 rubygems