mirror of
https://github.com/friendica/friendica
synced 2024-11-10 11:02:53 +00:00
add field select templates
This commit is contained in:
parent
d10b3da2f0
commit
064ecc1423
5 changed files with 33 additions and 0 deletions
|
@ -40,6 +40,7 @@ $(document).ready(function(){
|
|||
}
|
||||
|
||||
// give select fields an boostrap classes
|
||||
// @todo: this needs to be changed in friendica core
|
||||
$(".field.select, .field.custom").addClass("form-group");
|
||||
$(".field.select > select, .field.custom > select").addClass("form-control");
|
||||
|
||||
|
|
6
templates/field_custom.tpl
Normal file
6
templates/field_custom.tpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
<div class="form-group field custom">
|
||||
<label for="{{$field.0}}">{{$field.1}}</label>
|
||||
{{$field.2}}
|
||||
<span class="help-block" id="{{$field.0}}_tip">{{$field.3}}</span>
|
||||
</div>
|
8
templates/field_select.tpl
Normal file
8
templates/field_select.tpl
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
<div class="form-group field select">
|
||||
<label for="id_{{$field.0}}">{{$field.1}}</label>
|
||||
<select name="{{$field.0}}" id="id_{{$field.0}}" class="form-control" aria-describedby="{{$field.0}}_tip">
|
||||
{{foreach $field.4 as $opt=>$val}}<option value="{{$opt|escape:'html'}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
|
||||
</select>
|
||||
<span class="help-block" id="{{$field.0}}_tip">{{$field.3}}</span>
|
||||
</div>
|
8
templates/field_select_raw.tpl
Normal file
8
templates/field_select_raw.tpl
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
<div class="form-group field select">
|
||||
<label for="id_{{$field.0}}">{{$field.1}}</label>
|
||||
<select class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" aria-describedby="{{$field.0}}_tip">
|
||||
{{$field.4}}
|
||||
</select>
|
||||
<span class="help-block" id="{{$field.0}}_tip">{{$field.3}}</span>
|
||||
</div>
|
10
templates/field_themeselect.tpl
Normal file
10
templates/field_themeselect.tpl
Normal file
|
@ -0,0 +1,10 @@
|
|||
|
||||
{{if $field.5=="preview"}}<script>$(document).ready(function(){ previewTheme($("#id_{{$field.0}}")[0]); });</script>{{/if}}
|
||||
<div class="form-group field select">
|
||||
<label for="id_{{$field.0}}">{{$field.1}}</label>
|
||||
<select class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" {{if $field.5=="preview"}}onchange="previewTheme(this);"{{/if}} aria-describedby="{{$field.0}}_tip" >
|
||||
{{foreach $field.4 as $opt=>$val}}<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
|
||||
</select>
|
||||
<span class="help-block" id="{{$field.0}}_tip">{{$field.3}}</span>
|
||||
{{if $field.5=="preview"}}<div id="theme-preview"></div>{{/if}}
|
||||
</div>
|
Loading…
Reference in a new issue