Sha256: c484c84074bab19e4f7333f43d9bf4a8ebe4355e4d9fe017ac120599b4d8bcc3
Contents?: true
Size: 453 Bytes
Versions: 35
Compression:
Stored size: 453 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
35 entries across 35 versions & 1 rubygems