mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
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.
17 lines
607 B
17 lines
607 B
<div class="field">
|
|
{{template "repo/issue/fields/header" .}}
|
|
{{/* FIXME: required validation */}}
|
|
<div class="ui fluid selection dropdown {{if .item.Attributes.multiple}}multiple clearable{{end}}">
|
|
<input type="hidden" name="form-field-{{.item.ID}}" value="0">
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
{{if not .item.Validations.required}}
|
|
{{svg "octicon-x" 14 "remove icon"}}
|
|
{{end}}
|
|
<div class="default text"></div>
|
|
<div class="menu">
|
|
{{range $i, $opt := .item.Attributes.options}}
|
|
<div class="item" data-value="{{$i}}">{{$opt}}</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|