2016-02-23 16:51:24 +01:00
|
|
|
- unless smart_listing.empty?
|
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%th.col-md-4.col-lg-4= smart_listing.sortable 'Email', :email
|
|
|
|
%th.col-md-4.col-lg-4= smart_listing.sortable 'API Token', :api_token
|
|
|
|
%th.col-md-4.col-lg-4= smart_listing.sortable 'Date de dernière connexion', :last_sign_in_at
|
|
|
|
|
|
|
|
- @admins.each do |admin|
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
= admin.email
|
|
|
|
%td
|
|
|
|
= admin.api_token
|
|
|
|
%td
|
|
|
|
- unless admin.last_sign_in_at.nil?
|
|
|
|
= time_ago_in_words(l(admin.last_sign_in_at, format: "%d/%m/%Y %H:%M UTC +02:00"))
|
|
|
|
(
|
|
|
|
= admin.last_sign_in_at.to_date.strftime('%d/%m/%Y')
|
|
|
|
)
|
|
|
|
|
|
|
|
= smart_listing.paginate
|
|
|
|
= smart_listing.pagination_per_page_links
|
2016-04-19 10:41:23 +02:00
|
|
|
|
2016-02-23 16:51:24 +01:00
|
|
|
- else
|
|
|
|
%h4.center
|
|
|
|
Aucun administrateur créé
|