debian-mirror-gitlab/app/views/profiles/_event_table.html.haml

14 lines
410 B
Text
Raw Normal View History

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|
2021-12-11 22:18:48 +05:30
- if event.success?
%li
%span.description
= audit_icon('key', css_class: 'gl-mr-2')
= _('Signed in with %{authentication} authentication') % { authentication: event.provider }
%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"