Sha256: 4e28a14fae610e97f76fd1bfe6364ebdb973a941b8ac91b860a76b804a320394
Contents?: true
Size: 442 Bytes
Versions: 70
Compression:
Stored size: 442 Bytes
Contents
<h1>Listing people</h1> <table> <tr> <th>Name</th> </tr> <% for person in @people %> <tr> <td><%=h person.name %></td> <td><%= link_to 'Show', person_path(person) %></td> <td><%= link_to 'Edit', edit_person_path(person) %></td> <td><%= link_to 'Destroy', person_path(person), :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New person', new_person_path %>
Version data entries
70 entries across 70 versions & 22 rubygems