Lines 28-33
Link Here
|
28 |
<script type="text/javascript" src="[% themelang %]/js/pages/circulation.js"></script> |
28 |
<script type="text/javascript" src="[% themelang %]/js/pages/circulation.js"></script> |
29 |
<script type="text/javascript" src="[% themelang %]/js/checkouts.js"></script> |
29 |
<script type="text/javascript" src="[% themelang %]/js/checkouts.js"></script> |
30 |
<script type="text/javascript" src="[% themelang %]/js/holds.js"></script> |
30 |
<script type="text/javascript" src="[% themelang %]/js/holds.js"></script> |
|
|
31 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.fixFloat.js"></script> |
31 |
<script type="text/javascript"> |
32 |
<script type="text/javascript"> |
32 |
//<![CDATA[ |
33 |
//<![CDATA[ |
33 |
/* Set some variable needed in circulation.js */ |
34 |
/* Set some variable needed in circulation.js */ |
Lines 89-94
$(document).ready(function() {
Link Here
|
89 |
} |
90 |
} |
90 |
}); |
91 |
}); |
91 |
|
92 |
|
|
|
93 |
$("#selecttoolbar").fixFloat(); |
94 |
|
92 |
[% IF !( CircAutoPrintQuickSlip == 'clear' ) %] |
95 |
[% IF !( CircAutoPrintQuickSlip == 'clear' ) %] |
93 |
// listen submit to trigger qslip on empty checkout |
96 |
// listen submit to trigger qslip on empty checkout |
94 |
$('#mainform').bind('submit',function() { |
97 |
$('#mainform').bind('submit',function() { |
Lines 560-565
No patron matched <span class="ex">[% message %]</span>
Link Here
|
560 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off"> |
563 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off"> |
561 |
<input type="hidden" name="restoreduedatespec" /> |
564 |
<input type="hidden" name="restoreduedatespec" /> |
562 |
<fieldset id="circ_circulation_selectborrower" class="brief"> |
565 |
<fieldset id="circ_circulation_selectborrower" class="brief"> |
|
|
566 |
|
563 |
<legend>Patron selection</legend> |
567 |
<legend>Patron selection</legend> |
564 |
|
568 |
|
565 |
[% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %] |
569 |
[% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %] |
Lines 568-573
No patron matched <span class="ex">[% message %]</span>
Link Here
|
568 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
572 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
569 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
573 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
570 |
|
574 |
|
|
|
575 |
<div id="selecttoolbar" class="btn-toolbar"> |
576 |
<fieldset class="action"><button type="submit" class="btn btn-small"><i class="fa fa-check"></i> Select patron</button></fieldset> |
577 |
</div> |
578 |
|
579 |
|
571 |
<table id="table_borrowers"> |
580 |
<table id="table_borrowers"> |
572 |
<thead> |
581 |
<thead> |
573 |
<tr> |
582 |
<tr> |
Lines 592-598
No patron matched <span class="ex">[% message %]</span>
Link Here
|
592 |
[% END %] |
601 |
[% END %] |
593 |
</tbody> |
602 |
</tbody> |
594 |
</table> |
603 |
</table> |
595 |
<fieldset class="action"><input type="submit" value="Select" /></fieldset> |
|
|
596 |
</fieldset> |
604 |
</fieldset> |
597 |
</form> |
605 |
</form> |
598 |
[% ELSE %] |
606 |
[% ELSE %] |
599 |
- |
|
|