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 / labelSectionHeader.html
587 B 16 lines
1{{ define "repo/fragments/labelSectionHeader" }} 2 3 <div class="flex justify-between items-center gap-2"> 4 {{ template "repo/fragments/labelSectionHeaderText" .Name }} 5 {{ if (or .RepoInfo.Roles.IsOwner .RepoInfo.Roles.IsCollaborator) }} 6 <a 7 class="text-gray-500 dark:text-gray-400 flex gap-1 items-center group cursor-pointer" 8 hx-get="/{{ .RepoInfo.FullName }}/label/edit" 9 hx-vals='{"subject": "{{.Subject}}"}' 10 hx-swap="outerHTML" 11 hx-target="#label-panel"> 12 {{ i "pencil" "size-3" }} 13 </a> 14 {{ end }} 15 </div> 16{{ end }}