Basis of rails-driven app for local business
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 

19 lines
497 B

<% title "People" %>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<% for person in @people %>
<tr>
<td><%=h person.firstname %></td>
<td><%=h person.lastname %></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>
<p><%= link_to "New Person", new_person_path %></p>