2024-03-24 18:23:38 +00:00
|
|
|
<div class="field {{if not .item.VisibleOnForm}}tw-hidden{{end}}">
|
2022-09-02 07:58:49 +00:00
|
|
|
{{template "repo/issue/fields/header" .}}
|
2023-02-24 06:36:07 +00:00
|
|
|
{{range $i, $opt := .item.Attributes.options}}
|
2023-10-19 11:43:15 +00:00
|
|
|
<div class="field inline">
|
2024-03-24 18:23:38 +00:00
|
|
|
<div class="ui checkbox tw-mr-0 {{if and ($opt.visible) (not (SliceUtils.Contains $opt.visible "form"))}}tw-hidden{{end}}">
|
2023-10-19 11:43:15 +00:00
|
|
|
<input type="checkbox" name="form-field-{{$.item.ID}}-{{$i}}" {{if $opt.required}}required{{end}}>
|
|
|
|
<label>{{RenderMarkdownToHtml $.context $opt.label}}</label>
|
2022-09-02 07:58:49 +00:00
|
|
|
</div>
|
2023-10-19 11:43:15 +00:00
|
|
|
{{if $opt.required}}
|
|
|
|
<label class="required"></label>
|
|
|
|
{{end}}
|
2022-09-02 07:58:49 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|