<%= @user.nickname %>
<% if can? :edit, @user %>
<%= link_to content_tag(:small, content_tag(:span, "", class: "glyphicon glyphicon-cog")), edit_user_path(@user) %>
<% end %>
<%= content_tag :div, image_tag(@user.avatar, class: "img-circle img-thumbnail center"), class: "user_avatar center" %>
- Orders
- Orders placed<%= @user.orders_count %>
- Products ordered<%= @products.map(&:count).sum %>
<% if can? :create, @user.orders.build %>
- <%= link_to "Place new order", new_user_order_path(@user), class: "btn btn-default btn-block" %>
<% end %>
<% if can? :edit, @user %>
-
<% if @user.dagschotel %>
Huidige dagschotel
<%= image_tag @user.dagschotel.avatar %>
<%= link_to "Change dagschotel", user_edit_dagschotel_path(@user), class: "btn btn-default btn-block" %>
<% else %>
<%= link_to "Set dagschotel", user_edit_dagschotel_path(@user), class: "btn btn-default btn-block" %>
<% end %>
<% end %>