]> git.mxchange.org Git - friendica.git/blob - view/templates/field_select.tpl
Remove empty help spans from templates.
[friendica.git] / view / templates / field_select.tpl
1
2         
3         <div class='field select'>
4                 <label for='id_{{$field.0}}'>{{$field.1}}</label>
5                 <select name='{{$field.0}}' id='id_{{$field.0}}' aria-describedby='{{$field.0}}_tip'>
6                         {{foreach $field.4 as $opt=>$val}}<option value="{{$opt|escape:'html'}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
7                 </select>
8                 {{if $field.3}}
9                 <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
10                 {{/if}}
11         </div>