Sha256: 911a8fe026e50faac897f0dc9a0589c3bbc8a97f9dbe4b2b040bf10da97fd4a1
Contents?: true
Size: 626 Bytes
Versions: 1
Compression:
Stored size: 626 Bytes
Contents
<p id="products-index"></p> <h1>Listing Products</h1> <table> <thead> <tr> <th>Name</th> <th>Price</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @products.each do |product| %> <tr> <td><%= product.name %></td> <td><%= product.price %></td> <td><%= link_to 'Show', product %></td> <td><%= link_to 'Edit', edit_product_path(product) %></td> <td><%= link_to 'Destroy', product, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Product', new_product_url %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
better_frame-0.0.5 | test/dummy/app/views/products/index.html.erb |