]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/field_themeselect.tpl
Frio: add input for login backround image in admin settings
[friendica.git] / view / theme / frio / templates / field_themeselect.tpl
1
2 {{if $field.5=="preview"}}<script type="text/javascript">$(document).ready(function(){ previewTheme($("#id_{{$field.0}}")[0]); });</script>{{/if}}
3 <div class="form-group field select">
4         <label for="id_{{$field.0}}">{{$field.1}}</label>
5         <select class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" {{if $field.5=="preview"}}onchange="previewTheme(this);"{{/if}} aria-describedby="{{$field.0}}_tip" >
6                 {{foreach $field.4 as $opt=>$val}}<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
7         </select>
8         <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
9         {{if $field.5=="preview"}}<div id="theme-preview"></div>{{/if}}
10 </div>