blob: 3c3be3f57638c8e80f18c9f1110be587468951c4 (
plain)
1
2
3
4
5
6
7
8
|
<option>-</option>
{{ range $group, $tasks := index . 0}}
<optgroup label="{{$group}}">
{{ range $task := $tasks }}
<option {{if eq $task.Id (index $ 1)}}selected{{end}} value="{{$task.Id}}">{{$task.Text}}</option>
{{ end }}
</optgroup>
{{ end }}
|