friendica/view/templates/group_selection.tpl

10 lines
318 B
Smarty
Raw Normal View History

2013-04-23 13:47:57 +02:00
<div class="field custom">
<label for="group-selection" id="group-selection-lbl">{{$label}}</label>
<select name="group-selection" id="group-selection">
2013-04-23 13:47:57 +02:00
{{foreach $groups as $group}}
<option value="{{$group.id}}"{{if $group.selected}} selected="selected"{{/if}}>{{$group.name}}</option>
2013-04-23 13:47:57 +02:00
{{/foreach}}
</select>
</div>