<%= link_to "edit profile", edit_user_path(@user), :class => "btn-blue" %>
<%= image_tag avatar_url(@user.id, 128), :class => "user-avatar avatar", :alt => "avatar" %>
<% if @user.banned %>
This user is banned!
<% end %>
IGN: <%= @user.ign %>
Rank: <%= int_to_rank(@user.rank) %>
Joined: <%= @user.created_at.strftime("%e. %b %Y") %>
<% if current_user && current_user.rank >= rank_to_int("mod") %>
Last IP: <%= @user.last_ip %>
<% end %>
About: <%= @user.about.blank? ? "nothing".html_safe : @user.about %>