tap/app/views/products_list/_product_row.html.erb

10 lines
466 B
Text
Raw Normal View History

2015-03-28 13:36:07 +00:00
<tr id="products_row_<%= dom_id(product) %>">
2015-04-03 21:56:13 +00:00
<td><%= image_tag product.avatar(:small) %></td>
<td><%= product.name %></td>
<td><%= euro(product.price) %></td>
<td><%= product.stock %></td>
<td><span class="glyphicon <%= product.deleted ? "glyphicon-check" : "glyphicon-unchecked" %>"></span></td>
2015-07-07 18:13:37 +00:00
<td><%= product.calories %></td>
2015-04-03 21:56:13 +00:00
<td><%= button_to "Edit", edit_product_path(product), method: :get, class: "btn btn-default", remote: true %></td>
2015-03-28 13:36:07 +00:00
</tr>