This repository has no description
1{{ define "repo/fragments/pipelineStatuses" }}
2 {{ $root := . }}
3 {{ range $sha, $pipeline := .Pipelines }}
4 {{ if gt (len $pipeline.Statuses) 0 }}
5 {{ $id := printf "pipeline-status-%s" $sha }}
6 <span id="{{ $id }}" hx-swap-oob="outerHTML:#{{ $id }}">{{ template "repo/pipelines/fragments/pipelineSymbolLong" (dict "RepoInfo" $root.RepoInfo "Pipeline" $pipeline) }}</span>
7 {{ end }}
8 {{ end }}
9{{ end }}