13 lines
655 B
Plaintext
13 lines
655 B
Plaintext
<% if @person != nil %>
|
|
<% if @person['picture_uri'] != nil %>
|
|
<%= image_tag @host + @person['picture_uri'] %>
|
|
<% end %>
|
|
<p><%= @person['preceding_titles'] %> <%= @person['first_name'] %> <%= @person['last_name'] %>,
|
|
<%= @person['gender'] %> <%= @person['postpositioned_titles'] %></p>
|
|
<p>Phone: <%= @person['main_phone_number'] %></p>
|
|
<p>Mail: <%= @person['main_email'] %></p>
|
|
<p>Other mails: <%= @person['other_emails'] %></p>
|
|
<p>Main addresses: <%= @person['main_addresses'] %></p>
|
|
<!-- <p>Employee: <%#= @person.employee %></p>-->
|
|
<%= button_to 'Add to favorites', action: :add_to_fav, tiss_id: @person['tiss_id'] %>
|
|
<% end %> |