aboutsummaryrefslogtreecommitdiff
path: root/templates/repo/issue/labels/labels_sidebar.tmpl
blob: bd878d6f5c975006343c07dc3b55d78e05ae11b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
<div class="ui labels list">
	<span class="no-select item {{if .ctx.HasSelectedLabel}}gt-hidden{{end}}">{{.ctx.locale.Tr "repo.issues.new.no_label"}}</span>
	<span class="labels-list">
		{{range .ctx.Labels}}
			{{template "repo/issue/labels/label" dict "root" $.root "label" .}}
		{{end}}
		{{range .ctx.OrgLabels}}
			{{template "repo/issue/labels/label" dict "root" $.root "label" .}}
		{{end}}
	</span>
</div>