gitlab-org--gitlab-foss/app/views/profiles/_event_table.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
410 B
Plaintext
Raw Normal View History

%h5.gl-mt-0
= _('History of authentications')
2016-03-01 09:11:46 +00:00
%ul.content-list
2016-03-01 09:11:46 +00:00
- 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)
2015-10-19 09:19:45 +00:00
2015-07-03 11:54:50 +00:00
= paginate events, theme: "gitlab"