2016-03-01 04:11:46 -05:00
|
|
|
%h5.prepend-top-0
|
2019-05-28 03:07:20 -04:00
|
|
|
= _('History of authentications')
|
2016-03-01 04:11:46 -05:00
|
|
|
|
2018-05-29 11:08:35 -04:00
|
|
|
%ul.content-list
|
2016-03-01 04:11:46 -05:00
|
|
|
- events.each do |event|
|
|
|
|
%li
|
|
|
|
%span.description
|
|
|
|
= audit_icon(event.details[:with], class: "append-right-5")
|
2019-05-28 03:07:20 -04:00
|
|
|
= _('Signed in with %{authentication} authentication') % { authentication: event.details[:with]}
|
2018-04-09 13:42:45 -04:00
|
|
|
%span.float-right= time_ago_with_tooltip(event.created_at)
|
2015-10-19 05:19:45 -04:00
|
|
|
|
2015-07-03 07:54:50 -04:00
|
|
|
= paginate events, theme: "gitlab"
|