friendica/view/smarty3/group_selection.tpl

14 lines
421 B
Smarty
Raw Normal View History

{{*
* AUTOMATICALLY GENERATED TEMPLATE
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
*
2013-01-11 18:00:10 +01:00
*}}
<div class="field custom">
2012-12-22 20:57:29 +01:00
<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>