11 lines
363 B
Plaintext
11 lines
363 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: :show_detail, tiss_id: person['tiss_id'] %>
|
|
<%= button_to 'Add to favorites', action: :add_to_fav, tiss_id: person['tiss_id'] %>
|
|
</p>
|
|
<% end %>
|