Sprankelprachtig aan/afmeldsysteem

index.html.erb 552B

123456789101112131415161718192021222324252627
  1. <p id="notice"><%= notice %></p>
  2. <h1>People</h1>
  3. <table class="table">
  4. <thead>
  5. <tr>
  6. <th colspan="4"></th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <% @people.each do |person| %>
  11. <tr>
  12. <td><%= person.full_name %></td>
  13. <td><%= link_to 'Show', person %></td>
  14. <td><%= link_to 'Edit', edit_person_path(person) %></td>
  15. <td><%= link_to 'Destroy', person, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  16. </tr>
  17. <% end %>
  18. </tbody>
  19. </table>
  20. <br>
  21. <%= link_to 'New Person', new_person_path %>