Sha256: 60b2920f039ecb224acb095e2a81309195a1aa7502cff79b21e970b1d51e61e0
Contents?: true
Size: 808 Bytes
Versions: 2
Compression:
Stored size: 808 Bytes
Contents
<h1>Listing order_lines</h1> <table> <thead> <tr> <th>Order header</th> <th>Price</th> <th>Quantity</th> <th>Item name</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @order_lines.each do |order_line| %> <tr> <td><%= order_line.order_header_id %></td> <td><%= order_line.price %></td> <td><%= order_line.quantity %></td> <td><%= order_line.item_name %></td> <td><%= link_to 'Show', order_line %></td> <td><%= link_to 'Edit', edit_order_line_path(order_line) %></td> <td><%= link_to 'Destroy', order_line, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Order line', new_order_line_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ext_form-0.1.5 | spec/dummy/app/views/order_lines/index.html.erb |
ext_form-0.1.4 | spec/dummy/app/views/order_lines/index.html.erb |