mirror of
https://github.com/go-gitea/gitea
synced 2024-11-06 10:14:25 +00:00
4de2244697
Regression of #23092, the `{{$field := .}}` was missing during that refactoring.
12 lines
342 B
Handlebars
12 lines
342 B
Handlebars
<div class="field">
|
|
{{template "repo/issue/fields/header" .}}
|
|
{{range $i, $opt := .item.Attributes.options}}
|
|
<div class="field">
|
|
<div class="ui checkbox">
|
|
<input type="checkbox" name="form-field-{{$.item.ID}}-{{$i}}" {{if $opt.required}}readonly checked{{end}}>
|
|
<label>{{$opt.label}}</label>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|