tap/app/views/products/_product.html.erb
2015-07-08 13:31:32 +02:00

20 lines
518 B
Text

<div class="col-md-3">
<div class="thumbnail pic">
<div class="form_row_image">
<%= image_tag product.avatar %>
</div>
<div class="caption">
<h6>
<% if product.calories %>
<%= product.calories %> kcal
<% else %>
&nbsp;
<% end %>
</h6>
<h4><%= product.name %></h4>
<h3><%= euro(product.price) %></h3>
<h6>(In stock: <%= product.stock %>)</h6>
<%= render 'products/links', product: product %>
</div>
</div>
</div>