Listing people

<% for person in @people %> <% end %>
Name Birthday Sex
<%=h person.name %> <%=h person.birthday %> <%=h person.sex %> <%= link_to 'Show', person %> <%= link_to 'Edit', edit_person_path(person) %> <%= link_to 'Destroy', person, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New person', new_person_path %>