summaryrefslogtreecommitdiff
path: root/app/views/projects/commit/_pipeline_stage.html.haml
blob: f9a9c8707f52c60c0f1d9a3959c97405cc26fa53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- status_groups = statuses.sort_by(&:name).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