0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-06-11 15:09:16 +02:00
gitea/templates/repo/issue/labels/labels_sidebar.tmpl

12 lines
397 B
Handlebars
Raw Normal View History

<div class="ui labels list">
<span class="no-select item {{if .ctx.HasSelectedLabel}}hide{{end}}">{{.ctx.i18n.Tr "repo.issues.new.no_label"}}</span>
<span class="labels-list">
{{range .ctx.Labels}}
{{template "repo/issue/labels/label" dict "root" $ "label" .}}
{{end}}
{{range .ctx.OrgLabels}}
{{template "repo/issue/labels/label" dict "root" $ "label" .}}
{{end}}
</span>
</div>