summaryrefslogtreecommitdiff
path: root/app/views/projects/commit/_pipeline_stage.html.haml
blob: 289aa5178b17092e847ce2cb52725a444f8488f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- status_groups = statuses.group_by(&:group_name)
- status_groups.each do |group_name, grouped_statuses|
  - if grouped_statuses.one?
    - status = grouped_statuses.first
    - is_playable = status.playable? && can?(current_user, :update_build, @project)
    %li.build{ class: ("playable" if is_playable) }
      .curve
      .build-content
        = render "projects/#{status.to_partial_path}_pipeline", subject: status
  - else
    %li.build
      .curve
      .dropdown.inline.build-content
        = render "projects/commit/pipeline_status_group", name: group_name, subject: grouped_statuses