This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
binaryattraction/app/views/users/index.html.haml

10 lines
288 B
Plaintext

%h1 Peoples.
%ul
- @users.each do |user|
%li
%a{ :href => url(:edit_user, :id => user.user_name) }= user.user_name
%a{ :href => url(:delete_user, :id => user.user_name), :onclick => "return confirm('Are you sure?');" }
%img{ :src => '/images/user-trash.png' }