tiss2go/app/views/crawlers/people_crawler/show_detail.html.erb
2020-06-04 23:15:54 +02:00

25 lines
1.1 KiB
Plaintext

<% if @person != nil %>
<h2>Person: <%= @person['first_name'] %> <%= @person['last_name'] %></h2>
<div class="profile-picture">
<% if @person['picture_uri'] != nil %>
<%= image_tag @host + @person['picture_uri'] %>
<% end %>
</div>
<h5><%= @person['preceding_titles'] %> <%= @person['postpositioned_titles'] %></h5>
<% if @person['main_phone_number'] != nil %>
<p>Phone: <%= @person['main_phone_number'] %></p>
<% end %>
<p>E-Mail: <%= @person['main_email'] %></p>
<% if @person['other_emails'] != [] %>
<p>Other E-Mails: <%= @person['other_emails'] %></p>
<% end %>
<% if @person['main_addresses'] != nil %>
<p>Address: <%= @person['main_addresses'][0]['street'] %>
, <%= @person['main_addresses'][0]['zip_code'] %> <%= @person['main_addresses'][0]['city'] %></p>
<% end %>
<!-- <p>Employee: <%#= @person.employee %></p>-->
<%= button_to 'Add to favorites', action: :add_to_fav, tiss_id: @person['tiss_id'], class: 'button' %>
<%= render_personal_annotations @person['tiss_id'], @personal_annotation %>
<% end %>