Created
February 24, 2015 00:11
-
-
Save kareemgrant/5afb7d6f198b1f0738ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>users#index</h1> | |
<p>Find me in app/views/users/index.html.erb</p> | |
<% @users.each do |user| %> | |
<p> | |
<%= user.first_name %> | |
<%= user.last_name %> | |
<%= link_to "Delete This User", user_path(user), method: :delete, data: {confirm: "Are you sure you want to delete this user?"} %> | |
</p> | |
<% end %> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment