Sha256: 05ca436a523a1f9b7756b802272350fc3b82df17d72e9bc404004eed7425ec11
Contents?: true
Size: 487 Bytes
Versions: 2
Compression:
Stored size: 487 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bootstrap3_autocomplete_input-0.2.3 | test/dummy/app/views/orders/index.html.erb |
bootstrap3_autocomplete_input-0.2.1 | test/dummy/app/views/orders/index.html.erb |