<% if @person != nil %>

<%= @person['first_name'] %> <%= @person['last_name'] %>

<% if @person['picture_uri'] != nil %> <%= image_tag @host + @person['picture_uri'] %> <% end %>
<%= @person['preceding_titles'] %> <%= @person['postpositioned_titles'] %>
<% if @person['main_phone_number'] != nil %>

Phone: <%= @person['main_phone_number'] %>

<% end %>

E-Mail: <%= @person['main_email'] %>

<% if @person['other_emails'] != [] %>

Other E-Mails: <%= @person['other_emails'] %>

<% end %> <% if @person['main_addresses'] != nil %>

Address: <%= @person['main_addresses'][0]['street'] %>, <%= @person['main_addresses'][0]['zip_code'] %> <%= @person['main_addresses'][0]['city'] %>

<% end %> <%= button_to 'Add to favorites', action: :add_to_fav, tiss_id: @person['tiss_id'] %> <% end %>