aboutsummaryrefslogtreecommitdiffstats
path: root/view/group_selection.tpl
blob: 3809cb99464b6dee035b265660205e6f98d1bc48 (plain) (blame)
1
2
3
4
5
6
7
8
<div class="field custom">
<label for="group-selection" id="group-selection-lbl">$label</label>
<select name="group-selection" id="group-selection" >
{{ for $groups as $group }}
<option value="$group.id" {{ if $group.selected }}selected="selected"{{ endif }} >$group.name</option>
{{ endfor }}
</select>
</div>