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: c65c4fd0d81c7aac4192897512d7bc2fd01d96dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
%h5.gl-mt-0
  = _('History of authentications')

%ul.content-list
  - events.each do |event|
    %li
      %span.description
        = audit_icon(event.details[:with], class: "append-right-5")
        = _('Signed in with %{authentication} authentication') % { authentication: event.details[:with]}
      %span.float-right= time_ago_with_tooltip(event.created_at)

= paginate events, theme: "gitlab"