10 lines
254 B
Plaintext
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 %>
|