Sha256: ba2e936ca0c5d31575042460de05a859399f1f048f69b2c0a8dc798664a1865a
Contents?: true
Size: 535 Bytes
Versions: 1
Compression:
Stored size: 535 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Order Items</h1> <table> <thead> <tr> <th colspan="3"></th> </tr> </thead> <tbody> <% @order_items.each do |order_item| %> <tr> <td><%= link_to 'Show', order_item %></td> <td><%= link_to 'Edit', edit_order_item_path(order_item) %></td> <td><%= link_to 'Destroy', order_item, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Order Item', new_order_item_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_trade-0.0.1 | app/views/rails_trade_my/order_items/index.html.erb |