summaryrefslogtreecommitdiff
path: root/app/views/profiles/_event_table.html.haml
blob: d0ad90ac6cc1c769d5e621df5430cc210022d550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%h5.prepend-top-0
  History of authentications

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

= paginate events, theme: "gitlab"