summaryrefslogtreecommitdiff
path: root/app/views/ci/events/index.html.haml
blob: 9824e85b1afe883f66946d8f58270734e343ff9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%h3.page-title Events

.table-holder
  %table.table
    %thead
      %tr
        %th User ID
        %th Description
        %th When
    - @events.each do |event|
      %tr
        %td
          = event.user_id
        %td
          = event.description
        %td.light
          = time_ago_in_words event.updated_at
          ago

= paginate @events