friendica/view/templates/circle_selection.tpl

10 lines
300 B
Smarty
Raw Normal View History

<div class="field custom">
2023-06-25 20:37:11 +00:00
<label for="{{$id}}" id="circle-selection-lbl">{{$label}}</label>
<select name="{{$id}}" id="{{$id}}">
{{foreach $circles as $circle}}
<option value="{{$circle.id}}"{{if $circle.selected}} selected="selected"{{/if}}>{{$circle.name}}</option>
{{/foreach}}
</select>
</div>