tiss2go/app/views/tiss_crawler/people_show_basic.html.erb
2020-04-21 18:06:07 +02:00

11 lines
366 B
Plaintext

This is the result for your basic people search:
<% @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 favs.', action: :person_add_to_fav, tiss_id: person['tiss_id'] %>
</p>
<% end %>