Sha256: c02326378cf7a3429a21982a22fb6cec82bff1ad7251b2e54a0b8530648520fd
Contents?: true
Size: 459 Bytes
Versions: 10
Compression:
Stored size: 459 Bytes
Contents
<h1>Listing people</h1> <table> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> <% @people.each do |person| %> <tr> <td><%= person.name %></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 %>
Version data entries
10 entries across 10 versions & 1 rubygems