aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/group_selection.tpl
blob: a91658464c7434d54429bc75c2f045c57a93ec42 (plain) (blame)
1
2
3
4
5
6
7
8
<div class="mb-3 field custom">
<label for="group-selection" id="group-selection-lbl">{{$label}}</label>
<select class="form-control" 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>