You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

labels_sidebar.tmpl 414B

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