<%= @user.username %>
<%= image_tag @user.profile.avatar.url %>
- General
<% if @user.teamers.past.count > 0 %>
- Teams
<% end %>
<% if @user.match_teams.count > 0 %>
- Matches
<% end %>
<% if @user.predictions.count > 0 %>
- Predictions
<% end %>
<% if @user.articles.count > 0 %>
- Articles
<% end %>
<% if @user.movies.count > 0 %>
- Movies
<% end %>
<%= render :partial => "general" %>
<% if cuser and @user.can_update? cuser %>
<%= link_to 'Edit', edit_user_path(@user), class: 'button' %>
<%= link_to 'My Agenda', "/users/agenda/#{cuser.id}", class: 'button' %>
<% end %>