Files
ProxmoxAAS-Dashboard/web/templates/select.tmpl
2025-03-06 00:45:12 +00:00

11 lines
279 B
Cheetah

{{define "select"}}
<select class="w3-select w3-border" id="{{.ID}}" name="{{.Name}}">
{{range .Options}}
{{if .Selected}}
<option value="{{.Value}}" selected>{{.Display}}</option>
{{else}}
<option value="{{.Value}}">{{.Display}}</option>
{{end}}
{{end}}
</select>
{{end}}