28 lines
563 B
Plaintext
28 lines
563 B
Plaintext
<h1>Listing people</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Age</th>
|
|
<th>Zipcode</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @people.each do |person| %>
|
|
<tr>
|
|
<td><%= person.name %></td>
|
|
<td><%= person.age %></td>
|
|
<td><%= person.zipcode %></td>
|
|
<td><%= link_to 'Show', person %></td>
|
|
<td><%= link_to 'Edit', edit_person_path(person) %></td>
|
|
<td><%= link_to 'Destroy', person, :confirm => 'Are you sure?', :method => :delete %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<%= link_to 'New Person', new_person_path %>
|