<% if @orders.any? %>
Previously ordered
Total:
-
<%= @categories.map{|c| pluralize(c.count, c.category)}.to_sentence %>
Specifics:
<%= content_tag :ul do %>
<% @products.each do |p| %>
<%= content_tag :li, pluralize(p.count, p.name) %>
<% end %>
<% end %>
All orders (<%= @user.orders_count %>)
<%= will_paginate @orders %>