index.html.erb 576 B

1234567891011121314151617181920212223242526272829
  1. <h1>Listing users</h1>
  2. <% if notice %>
  3. <p id="notice"><%= notice %></p>
  4. <% end %>
  5. <table>
  6. <thead>
  7. <tr>
  8. <th>Name</th>
  9. <th colspan="3"></th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <% @users.each do |user| %>
  14. <tr>
  15. <td><%= user.name %></td>
  16. <td><%= link_to 'Show', user %></td>
  17. <td><%= link_to 'Edit', edit_user_path(user) %></td>
  18. <td><%= link_to 'Destroy', user, method: :delete,
  19. data: { confirm: 'Are you sure?' } %></td>
  20. </tr>
  21. <% end %>
  22. </tbody>
  23. </table>
  24. <br>
  25. <%= link_to 'New User', new_user_path %>