tiss2go/app/views/tiss_crawler/people_show_basic.html.erb
Marco Zeisler 76d4a6cd76 Add h1
2020-04-21 19:03:39 +02:00

11 lines
378 B
Plaintext

<h1>This is the result for your basic people search</h1>
<% @people.each_with_index do |person, index| %>
<p>
<%= person['first_name'] %>
<%= person['last_name'] %>
<%= button_to 'Details', action: :person_show_detail, tiss_id: person['tiss_id'] %>
<%= button_to 'Add to favorites', action: :person_add_to_fav, tiss_id: person['tiss_id'] %>
</p>
<% end %>