f3086192b0f1ffa5922f2602184ef4197ba12f4b
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / en / includes / catalogue-search-box.inc
1 [% USE Branches %]
2 [% IF ( CAN_user_catalogue ) %]
3     <div id="catalog_search" class="residentsearch">
4         <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
5             <span class="form-content">
6                 [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
7                     [% INCLUDE 'search_indexes.inc' $header_pulldown = 1 %]
8                 [% END %]
9                 [% IF ( Koha.Preference('RetainCatalogSearchTerms') ) %]
10                     <input type="text" name="q" id="search-form" size="20" value="[% ms_value | html %]" title="Enter the terms you wish to search for." class="query form-text head-searchbox form-control" placeholder="Enter search keywords" />
11                 [% ELSE %]
12                     <input type="text" name="q" id="search-form" size="20" title="Enter the terms you wish to search for." class="query form-text head-searchbox form-control" placeholder="Enter search keywords" />
13                 [% END %]
14
15                 [% IF ( Koha.Preference('IntranetAddMastheadLibraryPulldown') ) %]
16                     <select id="select_library" name="limit" style="margin-left:5px;">
17                         <option value="">All libraries</option>
18                         [% PROCESS options_for_libraries prefix => "branch:" libraries => Branches.all( selected => branch_limit ) %]
19                     </select>
20                 [% END %]
21             </span>
22             <button type="submit"><i class="fa fa-arrow-right"></i></button>
23         </form>
24     </div>
25 [% END %]