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

index.html.haml « builds « admin « ci « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab4ced54327d9f7fee092aa14a03581360e33716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
%ul.nav.nav-tabs.append-bottom-20
  %li{class: ("active" if @scope.nil?)}
    = link_to 'All builds', ci_admin_builds_path
  
  %li{class: ("active" if @scope == "pending")}
    = link_to "Pending", ci_admin_builds_path(scope: :pending)

  %li{class: ("active" if @scope == "running")}
    = link_to "Running", ci_admin_builds_path(scope: :running)


%table.builds
  %thead
    %tr
      %th Build
      %th Status
      %th Commit
      %th Runner
      %th Project
      %th Message
      %th Branch
      %th Duration
      %th Finished at

  = render @builds

= paginate @builds