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

10 lines
254 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: :people_show_detail, index: index %>
</p>
<% end %>