Sha256: 5a5e5f4779326c8ebb1f1c068ae57b75e6c5aab0652dbbe77dc624b2906a239f
Contents?: true
Size: 580 Bytes
Versions: 1
Compression:
Stored size: 580 Bytes
Contents
<h1>Listing orders</h1> <table> <tr> <th>Product</th> <th>Order number</th> <th>Price</th> <th></th> <th></th> <th></th> </tr> <% @orders.each do |order| %> <tr> <td><%= order.product_id %></td> <td><%= order.order_number %></td> <td><%= order.price %></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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simple_form_class-0.9.0 | test/dummy/app/views/orders/index.html.erb |