tap/app/views/products_list/_product_row.html.erb
2015-04-03 23:56:13 +02:00

8 lines
321 B
Plaintext

<tr id="products_row_<%= dom_id(product) %>">
<td><%= image_tag product.avatar(:small) %></td>
<td><%= product.name %></td>
<td><%= euro(product.price) %></td>
<td><%= product.stock %></td>
<td><%= button_to "Edit", edit_product_path(product), method: :get, class: "btn btn-default", remote: true %></td>
</tr>