retest/app/views/products/index.html.erb

34 lines
730 B
Plaintext

<h1>Listing products</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Qnt</th>
<th>Val</th>
<th>Active</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @products.each do |product| %>
<tr>
<td><%= product.name %></td>
<td><%= product.qnt %></td>
<td><%= product.val %></td>
<td><%= product.active %></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_path %>