Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_event_table.html.haml « profiles « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67c649a9fceca626d1a422cee5825fb44b878388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%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"