aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/smarty3/group_selection.tpl
blob: 2223125ea1640846a461822dda8f05f9ca680661 (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" >
{{foreach $groups as $group}}
<option value="{{$group.id}}" {{if $group.selected}}selected="selected"{{/if}} >{{$group.name}}</option>
{{/foreach}}
</select>
</div>