summaryrefslogtreecommitdiff
path: root/app/views/projects/issues/_related_branches.html.haml
blob: 69b030ed76a27ea98a9509b413e4e6e80899a00c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- if @related_branches.any?
  %h2.related-branches-title
    = pluralize(@related_branches.size, 'Related Branch')
  %ul.unstyled-list.related-merge-requests
    - @related_branches.each do |branch|
      %li
        - target = @project.repository.find_branch(branch).dereferenced_target
        - pipeline = @project.pipeline_for(branch, target.sha) if target
        - if can?(current_user, :read_pipeline, pipeline)
          %span.related-branch-ci-status
            = render 'ci/status/icon', status: pipeline.detailed_status(current_user)
        %span.related-branch-info
          %strong
            = link_to branch, project_compare_path(@project, from: @project.default_branch, to: branch), class: "ref-name"