summaryrefslogtreecommitdiff
path: root/app/views/profiles/_event_table.html.haml
blob: 269cb564cc2149b33845049f7957063fb7115444 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- if defined?(events)
  %table.table#audits
    %thead
      %tr
        %th Action
        %th When

    %tbody
      - events.each do |event|
        %tr
          %td
            %span
              Signed in with 
              %b= event.details[:with]
              authentication
          %td #{time_ago_in_words event.created_at} ago
  = paginate events, theme: "gitlab"