friendica/view/group_selection.tpl

9 lines
311 B
Smarty
Raw Normal View History

2012-05-18 10:38:11 +02:00
<div class="field custom">
<label for="group-selection" id="group-selection-lbl">$label</label>
<select name="group-selection" id="group-selection" >
{{ for $groups as $group }}
<option value="$group.id" {{ if $group.selected }}selected="selected"{{ endif }} >$group.name</option>
{{ endfor }}
</select>
2012-05-18 10:38:11 +02:00
</div>