foodsoft/app/views/admin/users/_users.html.haml

25 lines
712 B
Text
Raw Normal View History

- if User.count > 20
= items_per_page
= pagination_links_remote @users
%table.table.table-striped
2009-01-06 11:49:19 +01:00
%thead
%tr
%th Login
%th Name
%th Email
%th Zugriff auf
%th Letzter login
%th Aktionen
2009-01-06 11:49:19 +01:00
%tbody
- for user in @users
%tr
%td= link_to user.nick, [:admin, user]
%td=h user.name
2009-01-06 11:49:19 +01:00
%td=h user.email
%td=h format_roles(user)
%td=h format_time(user.last_login)
2009-01-06 11:49:19 +01:00
%td
= link_to 'Bearbeiten', edit_admin_user_path(user), class: 'btn btn-mini'
= link_to 'Löschen', [:admin, user], :confirm => "Willst du #{user.name} wirklich löschen?",
:method => :delete, class: 'btn btn-danger btn-mini'