2016-04-26 00:36:40 +02:00
|
|
|
|
2019-02-03 21:33:59 +01:00
|
|
|
{{if $field.5=="preview"}}
|
|
|
|
<script type="text/javascript">$(document).ready(function(){ previewTheme($("#id_{{$field.0}}")[0]); });</script>
|
|
|
|
{{/if}}
|
|
|
|
<div class="form-group field select">
|
|
|
|
<label for="id_{{$field.0}}">{{$field.1}}</label>
|
2021-05-19 23:47:15 +02:00
|
|
|
<select class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" {{if $field.5=="preview"}}onchange="previewTheme(this);"{{/if}} aria-describedby="{{$field.0}}_tip">
|
2019-02-03 21:33:59 +01:00
|
|
|
{{foreach $field.4 as $opt=>$val}}
|
|
|
|
<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>
|
|
|
|
{{/foreach}}
|
|
|
|
</select>
|
2018-04-23 21:15:54 +02:00
|
|
|
{{if $field.3}}
|
2019-02-03 21:33:59 +01:00
|
|
|
<span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3 nofilter}}</span>
|
2018-04-23 21:15:54 +02:00
|
|
|
{{/if}}
|
2019-02-03 21:33:59 +01:00
|
|
|
{{if $field.5=="preview"}}
|
|
|
|
<div id="theme-preview"></div>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|