This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / pages / templates / repo / fragments / pipelineStatuses.html
425 B 9 lines
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 }}