summaryrefslogtreecommitdiff
path: root/app/views/projects/builds/index.html.haml
blob: 36b308b7b8f4d3d44c48b8e207ff536b1d050e1b (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
- page_title "Builds"
= render "header_title"

.project-issuable-filter
  .controls
    - if can?(current_user, :manage_builds, @project)
      .pull-left.hidden-xs
        - if @all_builds.running_or_pending.any?
          = link_to 'Cancel running', cancel_all_namespace_project_builds_path(@project.namespace, @project),
            data: { confirm: 'Are you sure?' }, class: 'btn btn-danger', method: :post

    .pull-left.hidden-xs.hidden-sm{ style: 'margin-left: 7px;' }
      .dropdown
        %button.btn.btn-default.dropdown-toggle{ type: 'button', id: 'tools-dropdown', 'data-toggle' => 'dropdown' }
          Tools
          %span.caret
        %ul.dropdown-menu.dropdown-menu-right
          %li
            = link_to ci_lint_path do
              = icon('wrench')
              %span CI Lint Tool

  %ul.nav-links
    %li{class: ('active' if @scope.nil?)}
      = link_to project_builds_path(@project) do
        All
        %span.badge.js-totalbuilds-count
          = number_with_delimiter(@all_builds.count(:id))

    %li{class: ('active' if @scope == 'running')}
      = link_to project_builds_path(@project, scope: :running) do
        Running
        %span.badge.js-running-count
          = number_with_delimiter(@all_builds.running_or_pending.count(:id))

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

.gray-content-block
  #{(@scope || 'running').capitalize} builds from this project

%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 Commit
            %th Ref
            %th Stage
            %th Name
            %th Duration
            %th Finished at
            %th

        - @builds.each do |build|
          = render 'projects/commit_statuses/commit_status', commit_status: build, commit_sha: true, stage: true, allow_retry: true

    = paginate @builds, theme: 'gitlab'