tap/app/views/products_list/_product_row.html.erb
2015-03-28 14:36:07 +01:00

10 lines
378 B
Plaintext

<tr id="products_row_<%= dom_id(product) %>">
<%= f_form_for product, remote: true do |f| %>
<td><%= image_tag product.avatar(:small) %></td>
<td><%= f.text_field :name, skip_label: true %></td>
<td><%= f.price_field :price, skip_label: true %></td>
<td><%= f.number_field :stock, skip_label: true %></td>
<td><%= f.submit "Save" %></td>
<% end %>
</tr>