diff options
author | plegall <plg@piwigo.org> | 2014-06-16 13:53:16 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2014-06-16 13:53:16 +0000 |
commit | 0511ed2236b1fab9bc9c23b6c3bbee82ee4efdb5 (patch) | |
tree | 39d968320efbfd7f6ff79843a47cbac3cf49a21b /themes/default/template/search.tpl | |
parent | aacdb5a8bd5ed9936bc6d44a60b8b86a4e12283c (diff) |
feature 3091: search.php (advanced search), display a list of known authors instead of a text field.
git-svn-id: http://piwigo.org/svn/trunk@28707 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/template/search.tpl')
-rw-r--r-- | themes/default/template/search.tpl | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/themes/default/template/search.tpl b/themes/default/template/search.tpl index 56c142182..09257ef96 100644 --- a/themes/default/template/search.tpl +++ b/themes/default/template/search.tpl @@ -3,6 +3,17 @@ {include file='include/resize.inc.tpl'} *} +{combine_script id='jquery.selectize' load='footer' path='themes/default/js/plugins/selectize.min.js'} +{combine_css id='jquery.selectize' path="themes/default/js/plugins/selectize.dark.css"} + +{footer_script} +jQuery(document).ready(function() { + jQuery("#authors").selectize({ + plugins: ['remove_button'] + }); +}); +{/footer_script} + {if isset($MENUBAR)}{$MENUBAR}{/if} <div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}"> @@ -33,7 +44,11 @@ </label></li> </ul> <label>{'Search for Author'|@translate} - <input type="text" name="search_author" size="35"> + <select id="authors" placeholder="{'Type in a search term'|translate}" name="authors[]" multiple style="width:500px;"> +{foreach from=$AUTHORS item=author} + <option value="{$author.author|strip_tags:false|escape:html}">{$author.author|strip_tags:false} ({'%d photos'|translate:$author.counter})</option> +{/foreach} + </select> </label> </fieldset> |