15 lines
655 B
Text
15 lines
655 B
Text
- if @related_branches.any?
|
|
%h2.related-branches-title
|
|
= pluralize(@related_branches.count, 'Related Branch')
|
|
%ul.unstyled-list
|
|
- @related_branches.each do |branch|
|
|
%li
|
|
- sha = @project.repository.find_branch(branch).target
|
|
- pipeline = @project.pipeline(sha, branch) if sha
|
|
- if ci_copipelinemmit
|
|
%span.related-branch-ci-status
|
|
= render_pipeline_status(pipeline)
|
|
%span.related-branch-info
|
|
%strong
|
|
= link_to namespace_project_compare_path(@project.namespace, @project, from: @project.default_branch, to: branch), class: "label-branch" do
|
|
= branch
|