<%= render partial: 'edit_icon' %>

<%= t('profile.contact') %>

<% if @profile.contact_present? %> <% if @profile.phone? %>
<%= t('profile.phone') %>

<%= h @profile.phone %>

<% end %> <% if @profile.mobile? %>
<%= t('profile.mobile') %>

<%= h @profile.mobile %>

<% end %> <% if @profile.fax? %>
<%= t('profile.fax') %>

<%= h @profile.fax %>

<% end %> <% if @profile.address? %>
<%= t('profile.address') %>

<%= h @profile.address %>

<% end %> <% if @profile.website? %>
<%= t('profile.website') %>

<%= link_to @profile.website, @profile.website %>

<% end %> <% else %> <%= render partial: 'empty' %> <% end %>
<% if can? :update, @profile %>
<%= render partial: 'comunication-info_edit' %>
<% end %>