2012-10-15 21:19:17 +02:00
|
|
|
- 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
|
2013-09-20 22:40:13 +02:00
|
|
|
- if FoodsoftConfig[:use_nick]
|
2013-12-12 00:13:19 +01:00
|
|
|
%th= heading_helper User, :nick
|
|
|
|
%th= heading_helper User, :name
|
|
|
|
%th= heading_helper User, :email
|
2013-02-03 19:38:18 +01:00
|
|
|
%th= t 'admin.access_to'
|
2013-12-12 00:13:19 +01:00
|
|
|
%th= heading_helper User, :last_login
|
|
|
|
%th(colspan="2")= t 'ui.actions'
|
2009-01-06 11:49:19 +01:00
|
|
|
%tbody
|
|
|
|
- for user in @users
|
2012-10-15 21:19:17 +02:00
|
|
|
%tr
|
2013-10-29 18:58:04 +01:00
|
|
|
%td= link_to show_user(user), [:admin, user]
|
2013-09-20 22:40:13 +02:00
|
|
|
- if FoodsoftConfig[:use_nick]
|
|
|
|
%td= user.name
|
2012-11-12 13:13:01 +01:00
|
|
|
%td= user.email
|
|
|
|
%td= format_roles(user)
|
|
|
|
%td= format_time(user.last_login)
|
2013-04-04 02:49:52 +02:00
|
|
|
%td= link_to t('ui.edit'), edit_admin_user_path(user), class: 'btn btn-mini'
|
2014-02-20 15:04:53 +01:00
|
|
|
%td= link_to t('ui.delete'), [:admin, user], :data => {:confirm => t('admin.confirm', name: user.name)},
|
2012-10-15 21:19:17 +02:00
|
|
|
:method => :delete, class: 'btn btn-danger btn-mini'
|