Guest User

Untitled

a guest
May 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <h1>Listing users</h1>
  2.  
  3. <table>
  4. <tr>
  5. <th>Name</th>
  6. <th>Email</th>
  7. <th></th>
  8. <th></th>
  9. <th></th>
  10. </tr>
  11.  
  12. <% @users.each do |user| %>
  13. <tr>
  14. <td><%= user.name %></td>
  15. <td><%= user.email %></td>
  16. <td><%= link_to 'Show', user %></td>
  17. <td><%= link_to 'Edit', edit_user_path(user) %></td>
  18. <td><%= link_to 'Destroy', user, :confirm => 'Are you sure?',
  19. :method => :delete %></td>
  20. </tr>
  21. <% end %>
  22. </table>
  23.  
  24. <br />
  25.  
  26. <%= link_to 'New User', new_user_path %>
Add Comment
Please, Sign In to add comment