Bug 15091: DEBT is IMPOSSIBLE, not NEEDSCONFIRMATION
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / cataloging-search.inc
1
2 <div class="gradient">
3 <h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Cataloging Resident Search Box -->
4     <div id="header_search">
5         <div id="addbooks_search" class="residentsearch">
6         <p class="tip">Search the catalog and the reservoir:</p>
7             <form name="search" action="addbooks.pl">
8                 <input class="head-searchbox" type="text" name="q" size="40" />
9                 <input type="submit" class="submit" value="Submit" />
10             </form>
11         </div>
12
13         [% INCLUDE 'patron-search-box.inc' %]
14
15         [% IF ( CAN_user_circulate ) %]
16         <div id="checkin_search" class="residentsearch">
17             <p class="tip">Scan a barcode to check in:</p>
18             <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
19                 <input class="head-searchbox" name="barcode" id="ret_barcode" size="40" />
20                 <input value="Submit" class="submit" type="submit" />
21             </form>
22         </div>
23         [% END %]
24
25         <div id="catalog_search" class="residentsearch">
26             <p class="tip">Enter search keywords:</p>
27             <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
28                 <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
29                 <input type="submit" class="submit" value="Submit" />
30             </form>
31         </div>
32
33         <ul>
34             <li><a onclick="keep_text(0)" href="#addbooks_search">Cataloging search</a></li>
35             [% IF ( CAN_user_circulate ) %]<li><a onclick="keep_text(1)" href="#circ_search">Check out</a></li>[% END %]
36             [% IF ( CAN_user_circulate ) %]<li><a onclick="keep_text(2)" href="#checkin_search">Check in</a></li>[% END %]
37             <li><a onclick="keep_text(3)" href="#catalog_search">Search the catalog</a></li>
38         </ul>
39     </div><!-- /header_search -->
40 </div><!-- /gradient -->
41 <!-- End Cataloging Resident Search Box -->