summaryrefslogtreecommitdiff
path: root/app/views/ci/admin/events/index.html.haml
blob: 5a5b4dc7c3571cd2cee561369e3cf0c7ae01b87c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.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