General information
- Age
- <%= @user.age %>
- Country
- <%= @user.country %>
- Town
- <%= @user.profile.town %>
- SteamID
-
<%= @user.steamid %>
<%= link_to "Search for Steam Account" %>
- Stream
- <%= @user.profile.stream.blank? ? "No Stream Provided" : @user.profile.stream %>
Contact
<% if !@user.profile.web.blank? %>
- Web
- <%= @user.profile.web %>
<% end %>
<% if cuser and cuser.admin? or @user.public_email %>
- Email
- <%= @user.email_s %>
<% end %>
<% if @user.profile.steam_profile and @user.profile.steam_profile != "" %>
- Steam
-
<% if @user.profile.steam_profile.match(/\A[0-9]*\z/) %>
<%= link_to @user.profile.steam_profile, "http://steamcommunity.com/profiles/#{@user.profile.steam_profile}" %>
<% elsif @user.profile.steam_profile.match(/\A[A-Za-z0-9_\-\+]{1,40}\z/) %>
<%= link_to @user.profile.steam_profile, "http://steamcommunity.com/id/#{@user.profile.steam_profile}" %>
<% end %>
<% end %>
<% if @user.profile.achievements and !@user.profile.achievements.empty? %>
Achievements
<%= @user.profile.achievements_parsed.html_safe %>
<% end %>
<%= link_to "Send PM", { controller: "messages", action: "new", id: "User", id2: @user }, { class: 'button tiny' } %>