summaryrefslogtreecommitdiff
path: root/app/views/admin/builds/index.html.haml
blob: eb189328ab8c055095e89f37dc71e15d1f6570b9 (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
28
29
30
31
32
33
34
35
36
37
- @no_container = true
= render "admin/dashboard/head"

%div{ class: container_class }

  .top-area
    - build_path = ->(scope) { admin_builds_path(scope: scope) }
    = render "projects/builds/tabs", build_path: build_path, all_builds: @all_builds, scope: @scope

    .nav-controls
      - if @all_builds.running_or_pending.any?
        = link_to 'Cancel all', cancel_all_admin_builds_path, data: { confirm: 'Are you sure?' }, class: 'btn btn-danger', method: :post

  .row-content-block.second-block
    #{(@scope || 'all').capitalize} builds

  %ul.content-list.builds-content-list
    - if @builds.blank?
      %li
        .nothing-here-block No builds to show
    - else
      .table-holder
        %table.table.builds
          %thead
            %tr
              %th Status
              %th Commit
              %th Project
              %th Runner
              %th Name
              %th
              %th

          - @builds.each do |build|
            = render "admin/builds/build", build: build

      = paginate @builds, theme: 'gitlab'