code.gitea.io/gitea@v1.22.3/templates/repo/issue/labels/labels_sidebar.tmpl (about)

     1  <div class="ui labels list">
     2  	<span class="labels-list">
     3  		<span class="no-select {{if .root.HasSelectedLabel}}tw-hidden{{end}}">{{ctx.Locale.Tr "repo.issues.new.no_label"}}</span>
     4  		{{range .root.Labels}}
     5  			{{template "repo/issue/labels/label" dict "root" $.root "label" .}}
     6  		{{end}}
     7  		{{range .root.OrgLabels}}
     8  			{{template "repo/issue/labels/label" dict "root" $.root "label" .}}
     9  		{{end}}
    10  	</span>
    11  </div>