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