X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;ds=sidebyside;f=app%2Fviews%2Fproducts%2Findex.html.erb;fp=app%2Fviews%2Fproducts%2Findex.html.erb;h=88120ee7e05a27a417f52f7b280dd760a9ecc1a8;hb=e580d4626176c8deb6f44fec7e66f980b5923b29;hp=0000000000000000000000000000000000000000;hpb=28668145b30d983f624bebb24e9ac9c23d9b13cd;p=depot.git diff --git a/app/views/products/index.html.erb b/app/views/products/index.html.erb new file mode 100644 index 0000000..88120ee --- /dev/null +++ b/app/views/products/index.html.erb @@ -0,0 +1,24 @@ +<h1>Listing products</h1> + +<table> + <tr> + <th>Title</th> + <th>Description</th> + <th>Image url</th> + </tr> + +<% for product in @products %> + <tr> + <td><%=h product.title %></td> + <td><%=h product.description %></td> + <td><%=h product.image_url %></td> + <td><%= link_to 'Show', product %></td> + <td><%= link_to 'Edit', edit_product_path(product) %></td> + <td><%= link_to 'Destroy', product, :confirm => 'Are you sure?', :method => :delete %></td> + </tr> +<% end %> +</table> + +<br /> + +<%= link_to 'New product', new_product_path %>