diff options
author | marijus <mario@mariovavti.com> | 2014-10-08 12:36:26 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-10-08 12:36:26 +0200 |
commit | 289f57f79e27ffabcee404ee82758582d0d13985 (patch) | |
tree | 4ce32138cee349105481e53f4f2c6f9e34acba35 /view/tpl/searchbox.tpl | |
parent | 634c2ef8ce3038bba504040096b3de023077bddc (diff) | |
download | volse-hubzilla-289f57f79e27ffabcee404ee82758582d0d13985.tar.gz volse-hubzilla-289f57f79e27ffabcee404ee82758582d0d13985.tar.bz2 volse-hubzilla-289f57f79e27ffabcee404ee82758582d0d13985.zip |
template for searchbox and some more work on saved searches
Diffstat (limited to 'view/tpl/searchbox.tpl')
-rw-r--r-- | view/tpl/searchbox.tpl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/view/tpl/searchbox.tpl b/view/tpl/searchbox.tpl new file mode 100644 index 000000000..5911c72a9 --- /dev/null +++ b/view/tpl/searchbox.tpl @@ -0,0 +1,12 @@ +<form action="{{$action_url}}" method="get" > + <input type="hidden" name="f" value="" /> + <div id="{{$id}}" class="input-group"> + <input type="text" name="search" id="search-text" value="{{$s}}" onclick="this.submit();" /> + <div class="input-group-btn"> + <button type="submit" name="submit" class="btn btn-default btn-xs" id="search-submit" value="{{$search_label}}"><i class="icon-search"></i></button> + {{if $savedsearch}} + <button type="submit" name="searchsave" class="btn btn-default btn-xs" id="search-save" value="{{$save_label}}"><i class="icon-save"></i></button> + {{/if}} + </div> + </div> +</form> |