A calendar management project, for events and activities related to communities fighting for freedoms.
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
468 B
26 lines
468 B
9 years ago
|
%h1 Listing users
|
||
|
|
||
|
%table
|
||
|
%tr
|
||
|
%th Login
|
||
|
%th Email
|
||
|
%th Lastname
|
||
|
%th Firstname
|
||
|
%th
|
||
|
%th
|
||
|
%th
|
||
|
|
||
|
- @users.each do |user|
|
||
|
%tr
|
||
|
%td= user.login
|
||
|
%td= user.email
|
||
|
%td= user.lastname
|
||
|
%td= user.firstname
|
||
|
%td= link_to 'Show', user
|
||
|
%td= link_to 'Edit', edit_user_path(user)
|
||
|
%td= link_to 'Destroy', user, :method => :delete, :data => { :confirm => 'Are you sure?' }
|
||
|
|
||
|
%br
|
||
|
|
||
|
= link_to 'New User', new_user_path
|