index.html.haml 1.41 KB
Newer Older
1
.top-area
2
  %ul.nav-links
3 4
    %li{class: ('active' if @scope.nil?)}
      = link_to admin_builds_path do
5 6 7 8 9
        All
        %span.badge.js-totalbuilds-count= @all_builds.count(:id)

    %li{class: ('active' if @scope == 'running')}
      = link_to admin_builds_path(scope: :running) do
10
        Running
11
        %span.badge.js-running-count= number_with_delimiter(@all_builds.running_or_pending.count(:id))
12 13 14 15

    %li{class: ('active' if @scope == 'finished')}
      = link_to admin_builds_path(scope: :finished) do
        Finished
16
        %span.badge.js-running-count= number_with_delimiter(@all_builds.finished.count(:id))
17

18 19 20 21
  .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

Annabel Dunstone's avatar
Annabel Dunstone committed
22
.row-content-block.second-block
23
  #{(@scope || 'all').capitalize} builds
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

%ul.content-list
  - if @builds.blank?
    %li
      .nothing-here-block No builds to show
  - else
    .table-holder
      %table.table.builds
        %thead
          %tr
            %th Status
            %th Build ID
            %th Project
            %th Commit
            %th Ref
            %th Runner
            %th Name
Annabel Dunstone's avatar
Annabel Dunstone committed
41
            %th Tags
42 43 44 45 46 47 48 49
            %th Duration
            %th Finished at
            %th

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

    = paginate @builds, theme: 'gitlab'