Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <!-- Check if the current user ID matches the users ID of the profile page -->
  2. <% if current_user.id == @user.id %>
  3. <%= button_to "Edit Profile", "#{user_path}/edit", method: :get %>
  4. <%= button_to "Delete Profile", @user, method: :delete, data: {confirm: "Are you sure?"} %>
  5. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement