debian-mirror-gitlab/app/views/profiles/_event_table.html.haml
2021-12-11 22:18:48 +05:30

14 lines
410 B
Text

%h5.gl-mt-0
= _('History of authentications')
%ul.content-list
- events.each do |event|
- 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)
= paginate events, theme: "gitlab"