2016-06-07 15:29:38 +02:00
|
|
|
|
2016-06-10 20:34:25 +02:00
|
|
|
{{* important notes: The frio theme hides under certain conditions some parts of the templates through css.
|
2016-06-14 10:41:14 +02:00
|
|
|
Some parts of this template will be moved by js to other places (see theme.js) - E.g. the save-search button *}}
|
2016-06-10 20:34:25 +02:00
|
|
|
|
2016-06-07 15:29:38 +02:00
|
|
|
<div id="{{$id}}" {{* class="input-group" *}}>
|
|
|
|
<div id="search-wrapper">
|
|
|
|
<form action="{{$action_url}}" method="get" >
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-2"></div>
|
|
|
|
<div class="col-md-8 ">
|
|
|
|
|
|
|
|
<div class="form-group form-group-search">
|
|
|
|
<input type="text" name="search" id="search-text" class="search-input form-control form-search" data-toggle="tooltip" title="{{$search_hint}}" placeholder="{{$search_label}}" value="{{$s}}" />
|
2016-12-10 21:25:40 +01:00
|
|
|
<button id="search-submit" class="btn btn-default btn-sm form-button-search" type="submit">{{$search_label}}</button>
|
2016-06-07 15:29:38 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-4"></div>
|
|
|
|
<div class="col-md-8">
|
|
|
|
{{* The button to save searches *}}
|
|
|
|
{{if $savedsearch}}
|
2016-06-10 20:34:25 +02:00
|
|
|
<button class="btn btn-primary btn-small pull-right" type="submit" name="save" value="{{$save_label}}">{{$save_label}}</button>
|
2016-06-07 15:29:38 +02:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{* The select popup menu to select what kind of results the user would like to search for *}}
|
|
|
|
{{if $searchoption}}
|
|
|
|
<div class="col-md-6 pull-right">
|
|
|
|
<div class="form-group field select">
|
|
|
|
<select name="search-option" id="search-options" class="form-control form-control-sm">
|
|
|
|
<option value="fulltext">{{$searchoption.0}}</option>
|
|
|
|
<option value="tags">{{$searchoption.1}}</option>
|
|
|
|
<option value="contacts">{{$searchoption.2}}</option>
|
|
|
|
{{if $searchoption.3}}<option value="forums">{{$searchoption.3}}</option>{{/if}}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-2"></div>
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
2016-06-10 20:34:25 +02:00
|
|
|
{{* This form is inserted as experiment to move the search-save button to the second navbar with js *}}
|
|
|
|
<form id="search-save-form" action="{{$action_url}}" method="get" >
|
|
|
|
<input type="hidden" name="search" value="{{$s}}" />
|
|
|
|
<button class="btn btn-primary btn-sm btn-main pull-right" type="submit" name="save" id="search-save" value="{{$save_label}}"><i class="fa fa-floppy-o fa-2x" aria-hidden="true"></i></button>
|
|
|
|
</form>
|
2016-06-07 15:29:38 +02:00
|
|
|
</div>
|