<%=t('profile.' + @profile.subject.class.to_s.downcase + '.info')%>
<% if is_owner? %>
<%= link_to (image_tag('/images/btn/edit.png')), :controller => :profiles , :action => :edit, :section => "about_me"%>
<% end %>
<% if !is_personal_empty?%>
<% if @profile.organization? %>
<%=t('profile.organization')%>:
<%=h @profile.organization %>
<%end%> <% if @profile.birthday? %>
<%=t('profile.' + @profile.subject.class.to_s.downcase + '.birthday')%>:
<%=h I18n.l @profile.birthday, :format => :long %>
<% if @profile.subject.class.eql?(User) %>
<%=t('profile.age')%>:
<%=h @profile.age %>
<%end%> <%end%> <% if @profile.city? %>
<%=t('profile.actualcity')%>:
<%=h @profile.city %> <% if @profile.country? %> , <%=@profile.country%> <%end%>
<%end%> <% if @profile.description? %>
<%=t('profile.' + @profile.subject.class.to_s.downcase + '.about')%>:
<%=h @profile.description %>
<%end%>
<%elsif is_owner?%> <%=t('profile.empty')%> <%end%>