Created tables, product scaffold
[depot.git] / app / views / products / index.html.erb
1 <h1>Listing products</h1>
2
3 <table>
4 <tr>
5 <th>Title</th>
6 <th>Description</th>
7 <th>Image url</th>
8 </tr>
9
10 <% for product in @products %>
11 <tr>
12 <td><%=h product.title %></td>
13 <td><%=h product.description %></td>
14 <td><%=h product.image_url %></td>
15 <td><%= link_to 'Show', product %></td>
16 <td><%= link_to 'Edit', edit_product_path(product) %></td>
17 <td><%= link_to 'Destroy', product, :confirm => 'Are you sure?', :method => :delete %></td>
18 </tr>
19 <% end %>
20 </table>
21
22 <br />
23
24 <%= link_to 'New product', new_product_path %>