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

_pipelines_list.haml « commit « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29f4ef8f49e10edf3be8f17959eeafd62a300590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%ul.content-list.pipelines
  - if pipelines.blank?
    %li
      .nothing-here-block No pipelines to show
  - else
    .table-holder
      %table.table.builds
        %tbody
          %th Status
          %th Commit
          - pipelines.stages.each do |stage|
            %th.stage
              %span.has-tooltip{ title: "#{stage.titleize}" }
                = stage.titleize
          %th
          %th
        = render pipelines, commit_sha: true, stage: true, allow_retry: true, stages: pipelines.stages, status_icon_only: true, hide_branch: true