tap/app/views/orders/_order.html.erb

6 lines
102 B
Text
Raw Normal View History

2014-12-06 12:03:08 +01:00
<p>
<% order.products.each do |p| %>
2014-12-08 11:41:38 +01:00
<%= p.count(order).to_s + " " + p.name %>
2014-12-06 12:03:08 +01:00
<% end %>
</p>