summaryrefslogtreecommitdiff
path: root/app/views/projects/stage/_graph.html.haml
blob: 4ee30b023acc116650192cb163f404cec85cb0ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- stage = local_assigns.fetch(:stage)
- statuses = stage.statuses.latest
- status_groups = statuses.sort_by(&:sortable_name).group_by(&:group_name)
%li.stage-column
  .stage-name
    %a{ name: stage.name }
    = stage.name.titleize
  .builds-container
    %ul
      - status_groups.each do |group_name, grouped_statuses|
        - if grouped_statuses.one?
          - status = grouped_statuses.first
          %li.build{ 'id' => "ci-badge-#{group_name}" }
            .curve
            = render 'ci/status/graph_badge', subject: status
        - else
          %li.build{ 'id' => "ci-badge-#{group_name}" }
            .curve
            = render 'projects/stage/in_stage_group', name: group_name, subject: grouped_statuses