Guest User

Untitled

a guest
Feb 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <% table_listing @users do |c| %>
  2. <%= c.add('Username') {|u| link_to(u.username, user_path(u))} %>
  3. <%= c.add('E-mail')(&:email) %>
  4. <%= c.add('Full name')(&:full_name) %>
  5. <% c.add do %>
  6. <%= button_to 'Destroy', user_path(u), :method => :delete %>
  7. <% end %>
  8. <% end %>
Add Comment
Please, Sign In to add comment