Line 0
Link Here
|
|
|
1 |
<div class="gradient"> |
2 |
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Main page Resident Search Box --> |
3 |
|
4 |
<div id="header_search"> |
5 |
[% INCLUDE 'patron-search-box.inc' %] |
6 |
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %] |
7 |
<div id="checkin_search" class="residentsearch"> |
8 |
<p class="tip">Scan a barcode to check in:</p> |
9 |
<form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off"> |
10 |
<input name="barcode" class="head-searchbox" id="ret_barcode" size="40" accesskey="r" /> |
11 |
<input value="Submit" class="submit" type="submit" /> |
12 |
</form> |
13 |
</div> |
14 |
<div id="renew_search" class="residentsearch"> |
15 |
<p class="tip">Scan a barcode to renew:</p> |
16 |
<form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off"> |
17 |
<input class="head-searchbox" name="barcode" id="ren_barcode" size="40" /> |
18 |
<input value="Submit" class="submit" type="submit" /> |
19 |
</form> |
20 |
</div> |
21 |
[% END %] |
22 |
|
23 |
[% IF ( CAN_user_borrowers ) %] |
24 |
<div id="patron_search" class="residentsearch"> |
25 |
<p class="tip">Enter patron card number or partial name:</p> |
26 |
<form action="/cgi-bin/koha/members/member.pl" method="post"> |
27 |
<input name="searchmember" class="head-searchbox" id="searchmember" size="40" type="text"/> |
28 |
<input type="hidden" name="quicksearch" value="1" /> |
29 |
<input value="Submit" class="submit" type="submit" /> |
30 |
</form> |
31 |
</div>[% END %] |
32 |
|
33 |
<ul> |
34 |
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]<li><a onclick="keep_text(0)" href="#circ_search">Check out</a></li>[% END %] |
35 |
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]<li><a onclick="keep_text(1)" href="#checkin_search">Check in</a></li>[% END %] |
36 |
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]<li><a onclick="keep_text(2)" href="#renew_search">Renew</a></li>[% END %] |
37 |
[% IF ( CAN_user_borrowers ) %]<li><a onclick="keep_text(3)" href="#patron_search">Search patrons</a></li>[% END %] |
38 |
</ul> |
39 |
|
40 |
</div><!-- /header_search --> |
41 |
</div><!-- /gradient --> |
42 |
<!-- End Main page Resident Search Box --> |