Sha256: 6d004ab9885668e7d5ff47161fee82220f10a434e697bc190691367bfff16f38
Contents?: true
Size: 540 Bytes
Versions: 14
Compression:
Stored size: 540 Bytes
Contents
<h1>Listing products</h1> <table> <tr> <th>Name</th> <th>Description</th> <th></th> <th></th> <th></th> </tr> <% @products.each do |product| %> <tr> <td><%= product.name %></td> <td><%= product.description %></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 %> </table> <br /> <%= link_to 'New Product', new_product_path %>
Version data entries
14 entries across 14 versions & 1 rubygems