<% if @user.avatar? %>
<%= image_tag(@user.avatar.thumb.url) %>
<% else %>
<%= image_tag "person.png" %>
<% end %>
<% @infos.each do |a| %>
<%= a.i18n_variable[I18n.locale] %>
<%= render :partial => 'show_attribute', :object => a %>
<% end -%>
<%= @user.role.i18n_variable[I18n.locale] %>
<%= render :partial => 'show_sub_role', :collection => @user.sub_roles %>
<%= link_to t(:edit), edit_admin_user_path(@user) %>
<%= link_back %>