2015-02-09 17:06:24 +01:00
|
|
|
<div class="col-md-3 form_products">
|
|
|
|
<div class="thumbnail ">
|
|
|
|
<div class="form_row center">
|
2015-02-19 18:07:34 +01:00
|
|
|
<div class="form_row_image">
|
|
|
|
<%= image_tag product.avatar %>
|
|
|
|
</div>
|
2015-02-09 17:06:24 +01:00
|
|
|
<div class="caption">
|
2015-07-07 20:13:37 +02:00
|
|
|
<h6>
|
2015-07-08 13:31:32 +02:00
|
|
|
<% if product.calories %>
|
|
|
|
<%= content_tag :small do
|
|
|
|
concat product.calories
|
|
|
|
concat ' kcal'
|
2015-07-07 20:13:37 +02:00
|
|
|
end
|
2015-07-08 13:31:32 +02:00
|
|
|
%>
|
2015-07-07 20:13:37 +02:00
|
|
|
<% else %>
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
</h6>
|
2015-07-01 16:19:36 +02:00
|
|
|
<h4 class="text-nowrap">
|
|
|
|
<%= content_tag :span, product.name %>
|
|
|
|
<%= content_tag :small, euro(product.price) %>
|
|
|
|
</h4>
|
2015-07-01 16:49:27 +02:00
|
|
|
<%= f.counter :count, max: 1000, skip_label: true, wrapper_class: "input-group", class: "row_counter" %>
|
2015-02-09 17:06:24 +01:00
|
|
|
<%= f.fields_for :product do |product| %>
|
|
|
|
<%= product.hidden_field :price_cents, class: :price %>
|
|
|
|
<%= product.hidden_field :stock, class: :stock %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|