summaryrefslogtreecommitdiff
path: root/app/views/profiles/_event_table.html.haml
blob: 58af79716a75d4b1e014930a0a4165eeb48c58c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.table-holder
  %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"