<%= render partial: 'flash' %>
<% 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) %>
<% if @orders.any? %>

Total products

Total: Specifics: <%= content_tag :ul do %> <% @products.each do |p| %> <%= content_tag :li, pluralize(p.count, p.name) %> <% end %> <% end %>

All orders (<%= @user.orders_count %>)

<%= render @orders %>
<%= will_paginate @orders %>
<% end %>