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

%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