Skip to content

Instantly share code, notes, and snippets.

@kareemgrant
Created February 24, 2015 00:11
Show Gist options
  • Save kareemgrant/5afb7d6f198b1f0738ef to your computer and use it in GitHub Desktop.
Save kareemgrant/5afb7d6f198b1f0738ef to your computer and use it in GitHub Desktop.
<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