Sprankelprachtig aan/afmeldsysteem

index.html.erb 580B

1234567891011121314151617181920212223242526272829
  1. <p id="notice"><%= notice %></p>
  2. <h1>Groups</h1>
  3. <table class="table">
  4. <thead>
  5. <tr>
  6. <th>Name</th>
  7. <th>Members</th>
  8. <th>Events</th>
  9. <th colspan="2">Actions</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <% @groups.each do |group| %>
  14. <tr>
  15. <td><%= link_to group.name, group %></td>
  16. <td><%= link_to 'Edit', edit_group_path(group) %></td>
  17. <td><%= link_to 'Destroy', group, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  18. </tr>
  19. <% end %>
  20. </tbody>
  21. </table>
  22. <br>
  23. <%= link_to 'New Group', new_group_path %>