BigW Consortium Gitlab

index.html.haml 666 Bytes
Newer Older
1 2 3
- @no_container = true
= render "admin/dashboard/head"

4
%div{ class: container_class }
5 6

  .top-area
7 8
    - build_path_proc = ->(scope) { admin_builds_path(scope: scope) }
    = render "shared/builds/tabs", build_path_proc: build_path_proc, all_builds: @all_builds, scope: @scope
9 10 11 12 13 14 15 16

    .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

17
  %ul.content-list.builds-content-list
18
    = render "projects/builds/table", builds: @builds, admin: true