diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-31 17:27:18 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-03-31 17:27:18 -0700 |
commit | 7256579c168fbda8e8d5fc8a0e9de179fa27534c (patch) | |
tree | 3407ff4714bfa5bc11cabb7e213f4cbe311840d2 /view/tpl/field_select.tpl | |
parent | ecf30b2c71eb358e05a9a5b844aee79d45fd710b (diff) | |
parent | 95f4f14dca1ea982f67cccb31d860f7b8ed9055c (diff) | |
download | volse-hubzilla-7256579c168fbda8e8d5fc8a0e9de179fa27534c.tar.gz volse-hubzilla-7256579c168fbda8e8d5fc8a0e9de179fa27534c.tar.bz2 volse-hubzilla-7256579c168fbda8e8d5fc8a0e9de179fa27534c.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'view/tpl/field_select.tpl')
-rwxr-xr-x | view/tpl/field_select.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/view/tpl/field_select.tpl b/view/tpl/field_select.tpl index 762447290..cda9a823a 100755 --- a/view/tpl/field_select.tpl +++ b/view/tpl/field_select.tpl @@ -1,7 +1,7 @@ - <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}}'> + <div class="form-group"> + <label for="id_{{$field.0}}">{{$field.1}}</label> + <select class="form-control" name="{{$field.0}}" id="id_{{$field.0}}"> {{foreach $field.4 as $opt=>$val}}<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}} </select> - <span class='help-block'>{{$field.3}}</span> + <small class="form-text text-muted">{{$field.3}}</small> </div> |