]> git.mxchange.org Git - friendica.git/blob - view/smarty3/group_selection.tpl
Implement Smarty3
[friendica.git] / view / smarty3 / group_selection.tpl
1 <div class="field custom">
2 <label for="group-selection" id="group-selection-lbl">{{$label}}</label>
3 <select name="group-selection" id="group-selection" >
4 {{foreach $groups as $group}}
5 <option value="{{$group.id}}" {{if $group.selected}}selected="selected"{{/if}} >{{$group.name}}</option>
6 {{/foreach}}
7 </select>
8 </div>