Bug 30952: Header search - move tabs to the right (and other tweaks)
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / suggestions-add-search.inc
1 [% USE Koha %]
2 <div id="header_search">
3
4     <div id="suggestions_search" class="residentsearch">
5         <form action="/cgi-bin/koha/acqui/newordersuggestion.pl" method="get">
6             <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
7
8             <span class="form-title">
9                 <label class="control-label">Search suggestions</label>
10             </span>
11
12             <span class="form-content">
13                 <input type="text" id="searchtitle" class="head-searchbox form-control" placeholder="Title" name="title" size="10" value="[% title | html %]" />
14                 <input type="text" id="searchauthor" class="head-searchbox form-control" placeholder="Author"  name="author" size="10" value="[% author | html %]" />
15                 <input type="text" class="head-searchbox form-control" placeholder="Publisher" id="searchpublishercode" name="publishercode" size="10" value="[% publishercode | html %]" />
16             </span>
17
18             <button type="submit"><i class="fa fa-arrow-right"></i></button>
19         </form>
20     </div>
21
22     [% INCLUDE 'patron-search-box.inc' %]
23
24     [% INCLUDE 'catalogue-search-box.inc' %]
25
26     <ul>
27         <li><a title="Search suggestions" href="#suggestions_search" class="keep_text"><i class="fa fa-comment-o"></i> Search suggestions</a></li>
28         [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]<li><a title="Check out" href="#circ_search" class="keep_text"><i class="fa fa-upload"></i> Check out</a></li>[% END %]
29         [% IF ( CAN_user_catalogue ) %]<li><a title="Search catalog" href="#catalog_search" class="keep_text"><i class="fa fa-fw fa-search"></i> Search catalog</a></li>[% END %]
30     </ul>
31 </div>
32 <!-- End Suggestions Resident Search Box -->