Sha256: 08a212a013edaa6eaa86ab99aa05dd05040e4dccc9f53033752f1f69ecbf8ef3
Contents?: true
Size: 448 Bytes
Versions: 70
Compression:
Stored size: 448 Bytes
Contents
<h1>Listing products</h1> <table> <tr> <th>Name</th> </tr> <% for product in @products %> <tr> <td><%=h product.name %></td> <td><%= link_to 'Show', object_url(product) %></td> <td><%= link_to 'Edit', edit_object_url(product) %></td> <td><%= link_to 'Destroy', object_url(product), :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New product', new_object_url %>
Version data entries
70 entries across 70 versions & 22 rubygems