<% if can? :edit, @user %>
<%= link_to "[Edit dagschotel]" , user_edit_dagschotel_path(@user) %>
<%= link_to "[Edit profile]" , edit_user_path(@user) %>
<% end %>
<%= @user.nickname %>
<%= link_to "PLACE ORDER!", new_user_order_path(@user) if current_user == @user %>
DEBT: <%= euro(@user.debt) %>
Total products
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 %>