2020-06-23 00:09:42 +05:30
|
|
|
%h5.gl-mt-0
|
2019-09-04 21:01:54 +05:30
|
|
|
= _('History of authentications')
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
%ul.content-list
|
2016-06-02 11:05:42 +05:30
|
|
|
- events.each do |event|
|
|
|
|
%li
|
|
|
|
%span.description
|
2021-01-29 00:20:46 +05:30
|
|
|
= audit_icon(event.details[:with], css_class: 'gl-mr-2')
|
2019-09-04 21:01:54 +05:30
|
|
|
= _('Signed in with %{authentication} authentication') % { authentication: event.details[:with]}
|
2018-11-08 19:23:39 +05:30
|
|
|
%span.float-right= time_ago_with_tooltip(event.created_at)
|
2015-11-26 14:37:03 +05:30
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
= paginate events, theme: "gitlab"
|