index.html.erb 517 B

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