Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « events « ci « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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