3 [% IF ( export_remove_fields OR export_with_csv_profile ) %]
4 [% SET exports_enabled = 1 %]
6 [% USE AuthorisedValues %]
7 [% INCLUDE 'doc-head-open.inc' %]
8 [% SET destination = "circ" %]
9 <title>Koha › Circulation
10 [% IF borrowernumber %]
11 › Checking out to [% INCLUDE 'patron-title.inc' invert_name = 1 %]
14 [% INCLUDE 'doc-head-close.inc' %]
15 [% INCLUDE 'calendar.inc' %]
16 [% IF ( UseTablesortForCirc ) %]<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
17 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
18 [% INCLUDE 'datatables-strings.inc' %]
19 <script type="text/javascript" src="[% themelang %]/js/datatables.js"></script>[% END %]
20 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
21 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery-ui-timepicker-addon.js"></script>
22 <script type="text/javascript" src="[% themelang %]/js/pages/circulation.js"></script>
23 <script type="text/javascript">
25 var MSG_ADD_MESSAGE = _("Add a new message");
26 var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
27 [% IF ( UseTablesortForCirc && dateformat == 'metric' ) %]dt_add_type_uk_date();[% END %]
28 [% IF ( borrowernumber ) %]if($.cookie("holdfor") != [% borrowernumber %]){ $.cookie("holdfor",null, { path: "/", expires: 0 }); }[% ELSE %]$.cookie("holdfor",null, { path: "/", expires: 0 });[% END %]
29 [% UNLESS ( borrowernumber ) %][% UNLESS ( CGIselectborrower ) %]window.onload=function(){ $('#findborrower').focus(); };[% END %][% END %]
30 $(document).ready(function() {
31 $('#patronlists').tabs([% IF ( UseTablesortForCirc ) %]{
32 // Correct table sizing for tables hidden in tabs
33 // http://www.datatables.net/examples/api/tabs_and_scrolling.html
34 "show": function(event, ui) {
35 var oTable = $('div.dataTables_wrapper>table', ui.panel).dataTable();
36 if ( oTable.length > 0 ) {
37 oTable.fnAdjustColumnSizing();
41 [% IF ( UseTablesortForCirc ) %]
42 $("#issuest").dataTable($.extend(true, {}, dataTablesDefaults, {
46 { "aTargets": [ -1, -2[% IF ( exports_enabled ) %], -3[% END %] ], "bSortable": false, "bSearchable": false }
49 { "sType": "title-string" },{ "sType": "html" },null,{ "sType": "title-string" },null,null,null,null,null,null[% IF ( exports_enabled ) %],null[% END %]
54 $("#relissuest").dataTable($.extend(true, {}, dataTablesDefaults, {
58 { "sType": "title-string" },{ "sType": "html" },null,{ "sType": "title-string" },null,null,null,null,{ "sType": "html" }
63 $("#issuest").on("sort",function() {
64 $("#previous").hide(); // Don't want to see "previous checkouts" header sorted with other rows
66 $("#relissuest").on("sort",function() {
67 $("#relprevious").hide(); // Don't want to see "previous checkouts" header sorted with other rows
70 [% IF ( AllowRenewalLimitOverride ) %]
71 $( '#override_limit' ).click( function () {
73 $( '.renewals-allowed' ).show(); $( '.renewals-disabled' ).hide();
75 $( '.renewals-allowed' ).hide(); $( '.renewals-disabled' ).show();
77 } ).attr( 'checked', false );
78 [% END %][% IF !( CircAutoPrintQuickSlip == 'clear' ) %]
79 // listen submit to trigger qslip on empty checkout
80 $('#mainform').bind('submit',function() {
81 if ($('#barcode').val() == '') {
82 return printx_window( '[% CircAutoPrintQuickSlip %]' ); }
85 [% IF ( CAN_user_circulate_override_renewals ) %]
86 [% IF ( AllowRenewalLimitOverride ) %]
87 $( '#override_limit' ).click( function () {
89 $( '.renewals-allowed' ).show(); $( '.renewals-disabled' ).hide();
91 $( '.renewals-allowed' ).hide(); $( '.renewals-disabled' ).show();
93 } ).attr( 'checked', false );
100 <body id="circ_circulation" class="circ">
102 [% INCLUDE 'header.inc' %]
103 [% INCLUDE 'circ-search.inc' %]
105 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> ›
106 [% IF ( borrowernumber ) %]
107 <a href="/cgi-bin/koha/circ/circulation.pl">Checkouts</a> › [% INCLUDE 'patron-title.inc' %]
109 <strong>Checkouts</strong>
112 [% IF ( CGIselectborrower ) %]
113 <div id="doc" class="yui-t7">
119 <div id="doc3" class="yui-t2">
126 [% IF ( borrowernumber ) %]
127 [% INCLUDE 'members-toolbar.inc' %]
130 <!-- INITIAL BLOC : PARAMETERS & BORROWER INFO -->
131 <div style="display: none;" id="add_message_form">
132 <form method="post" action="/cgi-bin/koha/circ/add_message.pl" id="message_form" name="message_f">
133 <fieldset id="borrower_messages" class="brief">
134 <legend>Leave a message</legend>
137 <label for="message_type">Add a message for:</label>
138 <select name="message_type" id="message_type">
139 <option value="L">Other librarians</option>
140 <option value="B">[% firstname %]</option>
143 [% IF ( canned_bor_notes_loop ) %]
145 <label for="type">Predefined notes: </label>
146 <select name="type" id="type" onchange="this.form.borrower_message.value=this.options[this.selectedIndex].value;">
147 <option value="">Select note</option>
148 [% FOREACH canned_bor_notes_loo IN canned_bor_notes_loop %]
149 <option value="[% canned_bor_notes_loo.lib %]">[% canned_bor_notes_loo.lib %]</option>
155 <textarea rows="3" cols="60" name="borrower_message" id="borrower_message" ></textarea>
158 <fieldset class="action">
159 <input type="submit" value="Save" /> <a href="#" class="cancel">Cancel</a>
162 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
163 <input type="hidden" name="branchcode" value="[% branch %]" />
168 [% IF ( was_renewed ) %]<div class="dialog message">Patron's account has been renewed until [% expiry %]</div>[% END %]
170 [% IF additional_materials %]
171 <div id="materials" class="dialog message">Note about the accompanying materials: <br />
172 [% additional_materials %]
176 [% IF ( alert.ITEM_LOST ) %]
177 <div class="dialog message">This item has been lost with a status of "[% alert.ITEM_LOST %]".</div>
180 [% IF ( alert.OTHER_CHARGES ) %]
181 <div class="dialog message">The patron has unpaid charges for reserves, rentals etc of [% alert.OTHER_CHARGES %]</div>
184 [% IF ( NEEDSCONFIRMATION ) %]
187 <div id="circ_needsconfirmation" class="dialog alert">
188 [% IF CAN_user_circulate_force_checkout %]
189 <h3>Please confirm checkout</h3>
191 <h3>Cannot check out</h3>
195 [%IF ( AGE_RESTRICTION ) %]
196 <li>Age restriction [% AGE_RESTRICTION %].
197 [% IF CAN_user_circulate_force_checkout %]
204 <li>The patron has a debt of [% DEBT %]</li>
207 [% IF ( RENEW_ISSUE ) %]
208 <li>Item <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %]) is currently checked out to this patron. Renew?</li>
211 [% IF ( RESERVE_WAITING ) %]
212 <li>Item <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %]) has been waiting for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber %]">[% resfirstname %] [% ressurname %]</a> ([% rescardnumber %]) at [% resbranchname %] since [% reswaitingdate %]</li>
215 [% IF ( RESERVED ) %]
216 <li>Item <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %]) has been on hold for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber %]">[% resfirstname %] [% ressurname %]</a> ([% rescardnumber %]) at [% resbranchname %] since [% resreservedate %]</li>
219 [% IF ( ISSUED_TO_ANOTHER ) %]
220 <li>Item <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %]) is checked out to <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issued_borrowernumber %]">[% issued_firstname %] [% issued_surname %]</a> ([% issued_cardnumber %]).
221 [% IF CAN_user_circulate_force_checkout %]
222 Check in and check out?
227 [% IF ( TOO_MANY ) %]
228 <li>Too many checked out. [% current_loan_count %] checked out, only [% max_loans_allowed %] are allowed.</li>
231 [% IF ( BORRNOTSAMEBRANCH ) %]
232 <li>This patrons is from a different library ([% BORRNOTSAMEBRANCH %])</li>
235 [% IF ( PATRON_CANT ) %]
236 <li>This patron can't check out this item per library circulation policy</li>
239 [% IF ( NOT_FOR_LOAN_FORCING ) %]
241 [% IF ( itemtype_notforloan ) %]
242 Item type is normally not for loan.
243 [% ELSIF ( item_notforloan ) %]
244 [% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, item_notforloan, 0 ) %]
245 Item is normally not for loan [% IF (item_notforloan_lib) %]([% item_notforloan_lib %])[% END %].
247 [% IF CAN_user_circulate_force_checkout %]
253 [% IF ( USERBLOCKEDOVERDUE ) %]
254 <li>Patron has [% USERBLOCKEDOVERDUE %] overdue item(s).
255 [% IF CAN_user_circulate_force_checkout %]
261 [% IF ( ITEM_LOST ) %]
262 <li>This item has been lost with a status of "[% ITEM_LOST %]".
263 [% IF CAN_user_circulate_force_checkout %]
270 <li>High demand item. Loan period shortened to [% HIGHHOLDS.duration %] days (due [% HIGHHOLDS.returndate %]). Check out anyway?</li>
275 <script language="JavaScript" type="text/javascript">
276 $(document).ready(function() {
277 $("input[name=duedatespec]:hidden").val('[% HIGHHOLDS.returndate %]');
282 [% IF CAN_user_circulate_force_checkout or HIGHHOLDS %]
283 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off">
285 [% IF ( RESERVED ) %]
287 <input type="checkbox" id="cancelreserve" name="cancelreserve" value="cancel" />
288 <label for="cancelreserve">Cancel hold</label>
292 [% IF ( RESERVE_WAITING ) %]
294 <label for="cancelreserve">Cancel hold</label>
295 <input type="radio" value="cancel" name="cancelreserve" id="cancelreserve" /><br />
296 <label for="revertreserve">Revert waiting status</label>
297 <input type="radio" value="revert" name="cancelreserve" id="revertreserve" checked="checked"/>
301 <input type="hidden" name="barcode" value="[% barcode |html %]" />
302 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
303 <input type="hidden" name="issueconfirmed" value="1" />
304 [% IF ( DEBT ) %]<input type="hidden" name="debt_confirmed" value="1" />[% END %]
305 [% IF ( INVALID_DATE ) %]
307 <input type="text" size="13" id="duedatespec" name="duedatespec" readonly="readonly" value="[% duedatespec %]" />
308 <label for="duedatespec">Due date</label>
311 <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
313 <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
314 <input type="hidden" name="branch" value="[% branch %]" />
315 [% IF ( RENEW_ISSUE ) %]
316 <input type="submit" class="approve" value="Yes, Renew (Y)" accesskey="y" />
318 <input type="submit" class="approve" value="Yes, Check Out (Y)" accesskey="y" />
323 <form method="get" action="/cgi-bin/koha/circ/circulation.pl">
324 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
325 <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
326 <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
327 [% IF CAN_user_circulate_force_checkout or HIGHHOLDS %]
328 [% IF ( RENEW_ISSUE ) %]
329 <input type="submit" class="deny" value="No, Don't Renew (N)" accesskey="n" />
331 <input type="submit" class="deny" value="No, Don't Check Out (N)" accesskey="n" />
334 <input type="submit" class="deny" value="Continue" />
339 [% END %] <!-- NEEDSCONFIRMATION -->
341 [% IF ( IMPOSSIBLE ) %]
344 <audio src="[% interface %]/[% theme %]/sound/critical.ogg" autoplay="autoplay" autobuffer="autobuffer"></audio>
348 <div id="circ_impossible" class="dialog alert">
349 <!-- RESULT OF ISSUING REQUEST -->
352 <li>Local use recorded</li>
355 [% IF ( INVALID_DATE ) %]
356 <li>The due date "[% INVALID_DATE %]" is invalid</li>
359 [% IF ( UNKNOWN_BARCODE ) %]
360 <li>The barcode was not found [% barcode |html %]
361 [% IF ( fast_cataloging ) %]
362 [% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
363 <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA&barcode=[% barcode |uri %]&circborrowernumber=[% borrowernumber %]&branch=[% branch %]&duedatespec=[% duedatespec %]&stickyduedate=[% stickyduedate %]">Fast cataloging</a>
367 [% IF ( FALLBACK ) %]
369 <br />The following items were found by searching:
370 [% FOREACH book IN options %]
372 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off">
373 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
374 <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
375 <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
376 <input type="hidden" name="branch" value="[% branch %]" />
377 <input type="hidden" name="barcode" value="[% book.barcode %]" />
378 <input type="submit" name="x" value="Check out [% book.barcode %]: [% book.title %]" />
382 <br />No items were found by searching.
389 [% IF ( NOT_FOR_LOAN ) %]
391 [% IF ( itemtype_notforloan ) %]
392 Item type not for loan.
393 [% ELSIF ( item_notforloan ) %]
394 [% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, item_notforloan, 0 ) %]
395 Item not for loan [% IF (item_notforloan_lib) %]([% item_notforloan_lib %])[% END %].
400 [% IF ( WTHDRAWN ) %]
401 <li>Item has been withdrawn</li>
404 [% IF ( RESTRICTED ) %]
405 <li>Item is restricted</li>
409 <li>Patron's address is in doubt</li>
412 [% IF ( CARD_LOST ) %]
413 <li>Patron's card is lost</li>
416 [% IF ( DEBARRED ) %]
417 <li>Patron is restricted</li>
420 [% IF ( NO_MORE_RENEWALS ) %]
421 <li>No more renewals possible</li>
424 [%IF ( AGE_RESTRICTION ) %]
425 <li>Age restriction [% AGE_RESTRICTION %].</li>
429 <li>Patron's card is expired</li>
432 [% IF ( TOO_MANY ) %]
433 <li>Too many checked out. [% current_loan_count %] checked out, only [% max_loans_allowed %] are allowed.</li>
436 [% IF ( ITEMNOTSAMEBRANCH ) %]
437 <li>This item belongs to [% Branches.GetName( itemhomebranch ) %] and cannot be checked out from this location.</li>
440 [% IF ( USERBLOCKEDREMAINING ) %]
441 <li>Patron has had overdue items and is blocked for [% USERBLOCKEDREMAINING %] day(s).</li>
444 [% IF ( USERBLOCKEDOVERDUE ) %]
445 <li>Checkouts are BLOCKED because patron has overdue items</li>
452 <audio src="[% interface %]/[% theme %]/sound/beep.ogg" autoplay="autoplay" autobuffer="autobuffer"></audio>
454 [% END %] <!-- /impossible -->
457 <p>Item checked out</p>
461 [% INCLUDE 'patron-toolbar.inc' %]
463 No patron matched <span class="ex">[% message %]</span>
468 [% IF ( CGIselectborrower ) %]
469 [% INCLUDE 'patron-toolbar.inc' %]
471 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
472 <fieldset id="circ_circulation_selectborrower" class="brief">
473 <legend>Patron selection</legend>
475 <input type="hidden" name="branch" value="[% branch %]" />
476 <input type="hidden" name="printer" value="[% printer %]" />
477 <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
478 <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
481 <label for="borrowernumber">Select a patron: </label>
482 [% CGIselectborrower %]
485 <p><input type="submit" value="Select" /></p>
488 [% ELSE %] <!-- CGIselectborrower -->
490 <!-- BARCODE ENTRY -->
492 [% IF ( borrowernumber ) %]
494 [% UNLESS ( noissues ) %]
496 <div class="yui-u first">
503 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
504 <fieldset id="circ_circulation_issue">
505 [% IF ( DisplayClearScreenButton ) %]
506 <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
509 <label for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label>
511 <div class="hint">Enter item barcode:</div>
513 [% IF NEEDSCONFIRMATION %]
514 <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" disabled="disabled" />
516 <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" />
518 <input type="submit" value="Check Out" />
520 [% IF ( SpecifyDueDate ) %]<div class="date-select">
521 <div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div>
522 [% IF ( duedatespec ) %]<input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" readonly="readonly" />[% ELSE %]<input type="text" size="13" id="duedatespec" name="duedatespec" value="" readonly="readonly" />
524 <label for="stickyduedate"> Remember for session:</label>
525 [% IF ( stickyduedate ) %]
526 <input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" checked="checked" />
528 <input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" />
530 <input type="button" class="action" id="cleardate" value="Clear" name="cleardate" onclick="this.checked = false; this.form.duedatespec.value = ''; this.form.stickyduedate.checked = false; this.form.barcode.focus(); return false;" />
532 <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" />
533 <input type="hidden" name="branch" value="[% branch %]" />
534 <input type="hidden" name="printer" value="[% printer %]" />
535 <input type="hidden" name="print" value="maybe" />
536 <input type="hidden" name="debt_confirmed" value="[% debt_confirmed %]" />
538 <input type="hidden" name="charges" value="yes" />
539 <input type="hidden" name="oldamount" value="[% amountold %]" />
542 </form></div>[% END %]<!-- /unless noissues -->
544 [% IF ( noissues ) %]<div>[% ELSE %]<div class="yui-u">[% END %]
547 [% IF ( noissues ) %]
548 <h4>Checking out to [% INCLUDE 'patron-title.inc' %]</h4>
549 <div id="circmessages" class="circmessage warning">
551 <div id="circmessages" class="circmessage attention">
554 <h3>[% IF ( noissues ) %]
556 [% ELSE %]Attention:[% END %]</h3>
559 [% IF ( warndeparture ) %]
560 <li><span class="circ-hlt">Expiration:</span> Patron's card will expire soon.
561 Patron's card expires on [% expiry %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% borrowernumber %]&cardnumber=[% cardnumber %]&destination=circ&reregistration=y">Renew</a> or <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=circ&borrowernumber=[% borrowernumber %]&categorycode=[% categorycode %]">Edit Details</a>
566 [% IF ( returnbeforeexpiry ) %]
567 <li><span class="circ-hlt">Set due date to expiry:</span> You have the ReturnBeforeExpiry system preference enabled this means if the
568 expiry date is before the date due, the date due will be set to the expiry date
573 <li><span class="circ-hlt">Expiration:</span> Patron's card has expired.
574 [% IF ( expiry ) %]Patron's card expired on [% expiry %][% END %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% borrowernumber %]&cardnumber=[% cardnumber %]&destination=circ&reregistration=y">Renew</a> or <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=circ&borrowernumber=[% borrowernumber %]&categorycode=[% categorycode %]">Edit Details</a>
580 <li class="blocker"><span class="circ-hlt">Address:</span> Patron's address in doubt</li>
584 <li class="blocker"><span class="circ-hlt">Lost: </span>Patron's card is lost</li>
587 [% IF ( userdebarred ) %]
589 <span class="circ-hlt"> Restricted:</span> Patron's account is restricted
591 [% IF ( userdebarreddate ) %]
592 until [% userdebarreddate %]
595 [% IF ( debarredcomment ) %]
596 with the explanation: <br/><i>[% debarredcomment | html_line_break %]</i>
600 <a class="btn btn-small" href="#reldebarments" onclick="$('#debarments-tab-link').click()"><i class="icon-ban-circle"></i> View restrictions</a>
604 [% IF ( odues ) %]<li>[% IF ( nonreturns ) %]<span class="circ-hlt">Overdues:</span> Patron has <span class="circ-hlt">ITEMS OVERDUE</span>. See highlighted items <a href="#checkouts">below</a>[% END %]</li>
609 <span class="circ-hlt">Fees & Charges:</span> Patron has <a href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% borrowernumber %]">Outstanding fees & charges[% IF ( chargesamount ) %] of [% chargesamount %][% END %]</a>.
610 [% IF ( charges_is_blocker ) %]
611 Checkouts are <span class="circ-hlt">BLOCKED</span> because fine balance is <span class="circ-hlt">OVER THE LIMIT</span>.
613 <a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% borrowernumber %]">Make payment</a></li>
618 <span class="circ-hlt">Credits:</span> Patron has a credit[% IF ( creditsamount ) %] of [% creditsamount %][% END %]
627 [% IF ( WaitingReserveLoop ) %]
628 <div id="holdswaiting" class="circmessage">
629 <h4>Holds waiting:</h4>
630 [% FOREACH WaitingReserveLoo IN WaitingReserveLoop %]
632 <li> <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% WaitingReserveLoo.biblionumber %]">[% WaitingReserveLoo.title |html %]</a> ([% WaitingReserveLoo.itemtype %]), [% IF ( WaitingReserveLoo.author ) %]by [% WaitingReserveLoo.author %][% END %] [% IF ( WaitingReserveLoo.itemcallnumber ) %][[% WaitingReserveLoo.itemcallnumber %]] [% END %]Hold placed on [% WaitingReserveLoo.reservedate %].
633 [% IF ( WaitingReserveLoo.waitingat ) %]
634 <br />[% IF ( WaitingReserveLoo.waitinghere ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %]Waiting at [% WaitingReserveLoo.waitingat %]</strong>
640 <!-- /If WaitingReserveLoop -->[% END %]
642 <div id="circnotes" class="circmessage">
644 <p><span class="circ-hlt">[% notesmsg %]</span></p>
648 <!-- /If notes -->[% END %]
650 <div id="messages" class="circmessage">
653 [% FOREACH lib_messages_loo IN lib_messages_loop %]
655 <span class="circ-hlt">
656 [% lib_messages_loo.message_date_formatted %]
657 [% lib_messages_loo.branchcode %]
658 <i>"[% lib_messages_loo.message %]"</i>
660 [% IF ( lib_messages_loo.can_delete ) %]
661 <a href="/cgi-bin/koha/circ/del_message.pl?message_id=[% lib_messages_loo.message_id %]&borrowernumber=[% lib_messages_loo.borrowernumber %]">[Delete]</a>
663 [% IF ( all_messages_del ) %]
664 <a href="/cgi-bin/koha/circ/del_message.pl?message_id=[% lib_messages_loo.message_id %]&borrowernumber=[% lib_messages_loo.borrowernumber %]">[Delete]</a>
669 [% FOREACH bor_messages_loo IN bor_messages_loop %]
670 <li><span class="">[% bor_messages_loo.message_date_formatted %] [% bor_messages_loo.branchcode %] <i>"[% bor_messages_loo.message %]"</i></span> [% IF ( bor_messages_loo.can_delete ) %]<a href="/cgi-bin/koha/circ/del_message.pl?message_id=[% bor_messages_loo.message_id %]&borrowernumber=[% bor_messages_loo.borrowernumber %]">[Delete]</a>
671 [% ELSIF ( all_messages_del ) %]
672 <a href="/cgi-bin/koha/circ/del_message.pl?message_id=[% bor_messages_loo.message_id %]&borrowernumber=[% bor_messages_loo.borrowernumber %]">[Delete]</a>
679 <!-- /If flagged -->[% END %]
686 <div class="yui-g"><div id="patronlists" class="toptabs">
689 <li> [% IF ( issuecount ) %]
690 <a href="#checkouts">[% issuecount %] Checkout(s)</a>
692 <a href="#checkouts">0 Checkouts</a>
694 [% IF ( displayrelissues ) %]
695 <li><a href="#relissues">Relatives' checkouts</a></li>
697 <li>[% IF ( countreserv ) %]
698 <a href="#reserves">[% countreserv %] Hold(s)</a>
700 <a href="#reserves">0 Holds</a>
702 <li><a id="debarments-tab-link" href="#reldebarments">[% debarments.size %] Restrictions</a></li>
706 <!-- SUMMARY : TODAY & PREVIOUS ISSUES -->
708 [% IF ( issuecount ) %]
709 <form name="issues" action="/cgi-bin/koha/reserve/renewscript.pl" method="post" class="checkboxed">
710 <input type="hidden" value="circ" name="destination" />
711 <input type="hidden" name="cardnumber" value="[% cardnumber %]" />
712 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
713 <input type="hidden" name="branch" value="[% branch %]" />
716 <th scope="col">Due date</th>
717 <th scope="col">Title</th>
718 <th scope="col">Item type</th>
719 <th scope="col">Checked out on</th>
720 <th scope="col">Checked out from</th>
721 <th scope="col">Call no</th>
722 <th scope="col">Charge</th>
723 <th scope="col">Price</th>
724 <th scope="col">Renew <p class="column-tool"><a href="#" id="CheckAllitems">select all</a> | <a href="#" id="CheckNoitems">none</a></p></th>
725 <th scope="col">Check in <p class="column-tool"><a href="#" id="CheckAllreturns">select all</a> | <a href="#" id="CheckNoreturns">none</a></p></th>
726 [% IF ( exports_enabled ) %]
727 <th scope="col">Export <p class="column-tool"><a href="#" id="CheckAllexports">select all</a> | <a href="#" id="CheckNoexports">none</a></p></th>
730 [% IF ( todayissues ) %]
731 [% INCLUDE 'checkouts-table-footer.inc' %]
734 [% FOREACH todayissue IN todayissues %]
735 [% IF ( loop.odd ) %]
738 <tr class="highlight">
740 [% IF ( todayissue.od ) %]<td class="od">[% ELSE %]<td>[% END %]
741 <span title="[% todayissue.dd_sort %]">[% todayissue.dd %]</span>
743 [% IF ( todayissue.itemlost ) %]
744 <span class="lost">[% AuthorisedValues.GetByCode( 'LOST', todayissue.itemlost ) %]</span>
746 [% IF ( todayissue.damaged ) %]
747 <span class="dmg">[% AuthorisedValues.GetByCode( 'DAMAGED', todayissue.damaged ) %]</span>
750 <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% todayissue.biblionumber %]&type=intra"><strong>[% todayissue.title |html %][% FOREACH subtitl IN todayissue.subtitle %] [% subtitl.subfield %][% END %]</strong></a>[% IF ( todayissue.author ) %], by [% todayissue.author %][% END %][% IF ( todayissue.itemnotes ) %]- <span class="circ-hlt">[% todayissue.itemnotes %]</span>[% END %] <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% todayissue.biblionumber %]&itemnumber=[% todayissue.itemnumber %]#item[% todayissue.itemnumber %]">[% todayissue.barcode %]</a></td>
751 <td>[% UNLESS ( noItemTypeImages ) %] [% IF ( todayissue.itemtype_image ) %]<img src="[% todayissue.itemtype_image %]" alt="" />[% END %][% END %][% todayissue.itemtype %]</td>
752 <td><span title="[% todayissue.displaydate_sort %]">[% todayissue.checkoutdate %]</span></td>
753 [% IF ( todayissue.multiple_borrowers ) %]<td>[% todayissue.firstname %] [% todayissue.surname %]</td>[% END %]
754 <td>[% todayissue.issuingbranchname %]</td>
755 <td>[% todayissue.itemcallnumber %]</td>
756 <td>[% todayissue.charge %]</td>
757 <td>[% todayissue.replacementprice %]</td>
758 [% IF ( todayissue.renew_failed ) %]
759 <td class="problem">Renewal failed</td>
761 <td><span style="padding: 0 1em;">[% IF ( todayissue.renewals ) %][% todayissue.renewals %][% ELSE %]0[% END %]</span>
762 [% IF ( todayissue.can_renew ) %]
763 <input type="checkbox" name="all_items[]" value="[% todayissue.itemnumber %]" checked="checked" style="display: none;" />
764 [% IF ( todayissue.od ) %]
765 <input type="checkbox" class="radio" name="items[]" value="[% todayissue.itemnumber %]" checked="checked" />
767 <input type="checkbox" class="radio" name="items[]" value="[% todayissue.itemnumber %]" />
769 [% IF ( todayissue.renewsallowed ) %]
770 <span class="renewals">([% todayissue.renewsleft %] of [% todayissue.renewsallowed %] renewals remaining)</span>
773 [% IF ( todayissue.can_confirm ) %]<span class="renewals-allowed" style="display: none">
774 <input type="checkbox" name="all_items[]" value="[% todayissue.itemnumber %]" checked="checked" style="display: none;" />
775 [% IF ( todayissue.od ) %]
776 <input type="checkbox" class="radio" name="items[]" value="[% todayissue.itemnumber %]" checked="checked" />
778 <input type="checkbox" class="radio" name="items[]" value="[% todayissue.itemnumber %]" />
781 [% IF ( todayissue.renewsallowed ) %]
782 <span class="renewals">([% todayissue.renewsleft %] of [% todayissue.renewsallowed %] renewals remaining)</span>
784 <span class="renewals-disabled">
786 [% IF ( todayissue.renew_error_on_reserve ) %]
787 <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% todayissue.biblionumber %]">On hold</a>
789 [% IF ( todayissue.renew_error_too_many ) %]
792 [% IF ( todayissue.can_confirm ) %]
798 [% IF ( todayissue.return_failed ) %]
799 <td class="problem">Checkin failed</td>
801 [% IF ( todayissue.renew_error_on_reserve ) %]
802 <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% todayissue.biblionumber %]">On hold</a>
803 <input type="checkbox" name="all_barcodes[]" value="[% todayissue.barcode %]" checked="checked" style="display: none;" />
806 <td><input type="checkbox" class="radio" name="barcodes[]" value="[% todayissue.barcode %]" />
807 <input type="checkbox" name="all_barcodes[]" value="[% todayissue.barcode %]" checked="checked" style="display: none;" />
811 [% IF ( exports_enabled ) %]
812 <td style="text-align:center;">
813 <input type="checkbox" id="export_[% todayissue.biblionumber %]" name="biblionumbers" value="[% todayissue.biblionumber %]" />
814 <input type="checkbox" name="itemnumbers" value="[% todayissue.itemnumber %]" style="visibility:hidden;" />
818 [% END %] <!-- /loop todayissues -->
819 <!-- /if todayissues -->[% END %]
821 [% IF ( previssues ) %]
822 [% UNLESS ( todayissues ) %]
823 [% INCLUDE 'checkouts-table-footer.inc' %]
826 [% IF ( UseTablesortForCirc ) %]<tr id="previous"><th><span title="">Previous checkouts</span></th><th></th><th></th><th><span title=""></span></th><th></th><th></th><th></th><th></th><th></th><th></th>[% IF ( exports_enabled ) %]<th></th>[% END %]</tr>[% ELSE %]<tr id="previous">[% IF ( exports_enabled ) %]<th colspan="11">[% ELSE %]<th colspan="10">[% END %]Previous checkouts</th></tr>[% END %]
827 [% FOREACH previssue IN previssues %]
828 [% IF ( loop.odd ) %]
831 <tr class="highlight">
833 [% IF ( previssue.od ) %]<td class="od">[% ELSE %]<td>[% END %]
834 <span title="[% previssue.dd_sort %]">[% previssue.dd %]</span>
836 [% IF ( previssue.itemlost ) %]
837 <span class="lost">[% AuthorisedValues.GetByCode( 'LOST', previssue.itemlost ) %]</span>
839 [% IF ( previssue.damaged ) %]
840 <span class="dmg">[% AuthorisedValues.GetByCode( 'DAMAGED', previssue.damaged ) %]</span>
843 <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% previssue.biblionumber %]&type=intra"><strong>[% previssue.title |html %][% FOREACH subtitl IN previssue.subtitle %] [% subtitl.subfield %][% END %]</strong></a>[% IF ( previssue.author ) %], by [% previssue.author %][% END %] [% IF ( previssue.itemnotes ) %]- [% previssue.itemnotes %][% END %] <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% previssue.biblionumber %]&itemnumber=[% previssue.itemnumber %]#item[% previssue.itemnumber %]">[% previssue.barcode %]</a></td>
845 [% previssue.itemtype %]
847 <td><span title="[% previssue.displaydate_sort %]">[% previssue.displaydate %]</span></td>
848 [% IF ( previssue.multiple_borrowers ) %]<td>[% previssue.firstname %] [% previssue.surname %]</td>[% END %]
849 <td>[% previssue.issuingbranchname %]</td>
850 <td>[% previssue.itemcallnumber %]</td>
851 <td>[% previssue.charge %]</td>
852 <td>[% previssue.replacementprice %]</td>
853 [% IF ( previssue.renew_failed ) %]
854 <td class="problem">Renewal failed</td>
856 <td><span style="padding: 0 1em;">[% IF ( previssue.renewals ) %][% previssue.renewals %][% ELSE %]0[% END %]</span>
857 [% IF ( previssue.can_renew ) %]
858 <input type="checkbox" name="all_items[]" value="[% previssue.itemnumber %]" checked="checked" style="display: none;" />
859 [% IF ( previssue.od ) %]
860 <input type="checkbox" class="radio" name="items[]" value="[% previssue.itemnumber %]" checked="checked" />
862 <input type="checkbox" class="radio" name="items[]" value="[% previssue.itemnumber %]" />
864 [% IF ( previssue.renewsallowed ) %]
865 <span class="renewals">([% previssue.renewsleft %] of [% previssue.renewsallowed %] renewals remaining)</span>
868 [% IF ( previssue.can_confirm ) %]<span class="renewals-allowed" style="display: none">
869 <input type="checkbox" name="all_items[]" value="[% previssue.itemnumber %]" checked="checked" style="display: none;" />
870 [% IF ( previssue.od ) %]
871 <input type="checkbox" class="radio" name="items[]" value="[% previssue.itemnumber %]" checked="checked" />
873 <input type="checkbox" class="radio" name="items[]" value="[% previssue.itemnumber %]" />
876 [% IF ( previssue.renewsallowed ) %]
877 <span class="renewals">([% previssue.renewsleft %] of [% previssue.renewsallowed %] renewals remaining)</span>
879 <span class="renewals-disabled">
881 [% IF ( previssue.renew_error_on_reserve ) %]
882 <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% previssue.biblionumber %]">On hold</a>
884 [% IF ( previssue.renew_error_too_many ) %]
887 [% IF ( previssue.can_confirm ) %]
893 [% IF ( previssue.return_failed ) %]
894 <td class="problem">Check-in failed</td>
896 [% IF ( previssue.renew_error_on_reserve ) %]
897 <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% previssue.biblionumber %]">On hold</a>
898 <input type="checkbox" name="all_barcodes[]" value="[% previssue.barcode %]" checked="checked" style="display: none;" />
901 <td><input type="checkbox" class="radio" name="barcodes[]" value="[% previssue.barcode %]" />
902 <input type="checkbox" name="all_barcodes[]" value="[% previssue.barcode %]" checked="checked" style="display: none;" />
906 [% IF ( exports_enabled ) %]
907 <td style="text-align:center;">
908 <input type="checkbox" id="export_[% previssue.biblionumber %]" name="biblionumbers" value="[% previssue.biblionumber %]" />
909 <input type="checkbox" name="itemnumbers" value="[% previssue.itemnumber %]" style="visibility:hidden;" />
913 <!-- /loop previssues -->[% END %]
914 <!--/if previssues -->[% END %]
917 [% IF ( issuecount ) %]
918 <fieldset class="action">
919 [% IF ( CAN_user_circulate_override_renewals ) %]
920 [% IF ( AllowRenewalLimitOverride ) %]
921 <label for="override_limit">Override renewal limit:</label>
922 <input type="checkbox" name="override_limit" id="override_limit" value="1" />
925 <input type="submit" name="renew_checked" value="Renew or Return checked items" />
926 <input type="submit" id="renew_all" name="renew_all" value="Renew all" />
928 [% IF ( exports_enabled ) %]
930 <label for="export_formats"><b>Export checkouts using format:</b></label>
931 <select name="export_formats" id="export_formats">
932 <option value="iso2709_995">ISO2709 with items</option>
933 <option value="iso2709">ISO2709 without items</option>
934 [% IF ( export_with_csv_profile ) %]
935 <option value="csv">CSV</option>
939 <label for="export_remove_fields">Don't export fields:</label> <input type="text" id="export_remove_fields" name="export_remove_fields" value="[% export_remove_fields %]" title="Use for iso2709 exports" />
940 <input type="hidden" name="op" value="export" />
941 <input type="hidden" id="export_format" name="format" value="iso2709" />
942 <input type="hidden" id="dont_export_item" name="dont_export_item" value="0" />
943 <input type="hidden" id="record_type" name="record_type" value="bibs" />
944 <input type="button" id="export_submit" value="Export" />
950 <p>Patron has nothing checked out.</p>
956 [% IF ( displayrelissues ) %]
958 <table id="relissuest">
961 <th scope="col">Due date</th>
962 <th scope="col">Title</th>
963 <th scope="col">Item type</th>
964 <th scope="col">Checked out on</th>
965 <th scope="col">Checked out from</th>
966 <th scope="col">Call no</th>
967 <th scope="col">Charge</th>
968 <th scope="col">Price</th>
969 <th scope="col">Patron</th>
972 [% IF ( relissues ) %] <tbody>
974 [% FOREACH relissue IN relissues %]
975 [% IF ( loop.odd ) %]
978 <tr class="highlight">
980 [% IF ( relissue.overdue ) %]<td class="od">[% ELSE %]<td>[% END %]
981 <span title="[% relissue.dd_sort %]">[% relissue.dd %]</span></td>
983 [% IF ( relissue.itemlost ) %]
984 <span class="lost">[% AuthorisedValues.GetByCode( 'LOST', relissue.itemlost ) %]</span>
986 [% IF ( relissue.damaged ) %]
987 <span class="dmg">[% AuthorisedValues.GetByCode( 'DAMAGED', relissue.damaged ) %]</span>
990 <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% relissue.biblionumber %]&type=intra"><strong>[% relissue.title |html %][% FOREACH subtitl IN relissue.subtitle %] [% subtitl.subfield %][% END %]</strong></a>[% IF ( relissue.author ) %], by [% relissue.author %][% END %][% IF ( relissue.itemnotes ) %]- <span class="circ-hlt">[% relissue.itemnotes %]</span>[% END %] <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% relissue.biblionumber %]&itemnumber=[% relissue.itemnumber %]#item[% relissue.itemnumber %]">[% relissue.barcode %]</a></td>
991 <td>[% UNLESS ( noItemTypeImages ) %] [% IF ( relissue.itemtype_image ) %]<img src="[% relissue.itemtype_image %]" alt="" />[% END %][% END %][% relissue.itemtype %]</td>
992 <td><span title="[% relissue.displaydate_sort %]">[% relissue.displaydate %]</span></td>
993 <td>[% relissue.issuingbranchname %]</td>
994 <td>[% relissue.itemcallnumber %]</td>
995 <td>[% relissue.charge %]</td>
996 <td>[% relissue.replacementprice %]</td><td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% relissue.borrowernumber %]">[% relissue.firstname %] [% relissue.surname %] ([% relissue.cardnumber %])</a></td>
998 [% END %] <!-- /loop relissues -->
999 <!-- /if relissues -->[% END %]
1000 [% IF ( relprevissues ) %]
1001 [% IF ( UseTablesortForCirc ) %]<tr id="relprevious"><th><span title="">Previous checkouts</span></th><th></th><th></th><th><span title=""></span></th><th></th><th></th><th></th><th></th><th></th></tr>[% ELSE %]<tr id="relprevious"><th colspan="9">Previous checkouts</th></tr>[% END %]
1002 [% FOREACH relprevissue IN relprevissues %]
1003 [% IF ( loop.odd ) %]
1006 <tr class="highlight">
1008 [% IF ( relprevissue.overdue ) %]<td class="od">[% ELSE %]<td>[% END %]
1009 <span title="[% relprevissue.dd_sort %]">[% relprevissue.dd %]</span>
1011 <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% relprevissue.biblionumber %]&type=intra"><strong>[% relprevissue.title |html %][% FOREACH subtitl IN relprevissue.subtitle %] [% subtitl.subfield %][% END %]</strong></a>[% IF ( relprevissue.author ) %], by [% relprevissue.author %][% END %] [% IF ( relprevissue.itemnotes ) %]- [% relprevissue.itemnotes %][% END %] <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% relprevissue.biblionumber %]&itemnumber=[% relprevissue.itemnumber %]#item[% relprevissue.itemnumber %]">[% relprevissue.barcode %]</a></td>
1012 <td>[% UNLESS noItemTypeImages %][% IF relprevissue.itemtype_image %]<img src="[% relprevissue.itemtype_image %]" alt="" />[% END %][% END %][% relprevissue.itemtype %]</td>
1013 <td><span title="[% relprevissue.displaydate_sort %]">[% relprevissue.displaydate %]</span></td>
1014 <td>[% relprevissue.issuingbranchname %]</td>
1015 <td>[% relprevissue.itemcallnumber %]</td>
1016 [% IF ( relprevissue.multiple_borrowers ) %]<td>[% relprevissue.firstname %] [% relprevissue.surname %]</td>[% END %]
1017 <td>[% relprevissue.charge %]</td>
1018 <td>[% relprevissue.replacementprice %]</td>
1019 <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% relprevissue.borrowernumber %]">[% relprevissue.firstname %] [% relprevissue.surname %] ([% relprevissue.cardnumber %])</a></td>
1022 <!-- /loop relprevissue -->[% END %]
1023 <!--/if relprevissues -->[% END %]
1028 [% END %]<!-- end displayrelissues -->
1030 [% INCLUDE borrower_debarments.inc %]
1033 [% IF ( reservloop ) %]
1034 <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
1035 <input type="hidden" name="from" value="circ" />
1040 <th>Call number</th>
1048 [% FOREACH reservloo IN reservloop %]
1049 <tr class="[% reservloo.color %]">
1050 <td>[% reservloo.reservedate %]</td>
1051 <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% reservloo.biblionumber %]"><strong>[% reservloo.title |html %][% FOREACH subtitl IN reservloo.subtitle %] [% subtitl.subfield %][% END %]</strong></a>[% IF ( reservloo.author ) %], by [% reservloo.author %][% END %]</td>
1052 <td>[% reservloo.itemcallnumber %]</td>
1053 <td><em>[% IF ( reservloo.barcodereserv ) %]Item [% reservloo.barcodereserv %]
1054 [% END %][% IF ( reservloo.waiting ) %] <strong>waiting at [% reservloo.waitingat %]</strong>
1056 [% IF ( reservloo.transfered ) %] <strong>in transit</strong> from
1057 [% reservloo.frombranch %] since [% reservloo.datesent %]
1059 [% IF ( reservloo.nottransfered ) %] hasn't been transferred yet from [% reservloo.nottransferedby %]</i>
1061 <td>[% reservloo.expirationdate | $KohaDates %]</td>
1063 [% IF ( reservloo.waitingposition ) %]<b> [% reservloo.waitingposition %] </b>[% END %]
1065 <td><select name="rank-request">
1066 <option value="n">No</option>
1067 <option value="del">Yes</option>
1069 <input type="hidden" name="biblionumber" value="[% reservloo.biblionumber %]" />
1070 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
1071 <input type="hidden" name="reserve_id" value="[% reservloo.reserve_id %]" />
1073 <td>[% IF ( reservloo.suspend ) %]Suspended [% IF ( reservloo.suspend_until ) %] until [% reservloo.suspend_until | $KohaDates %][% END %][% END %]</td>
1077 <fieldset class="action"><input type="submit" class="cancel" name="submit" value="Cancel marked holds" /></fieldset>
1080 [% IF SuspendHoldsIntranet %]
1081 <fieldset class="action">
1082 <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
1083 <input type="hidden" name="from" value="circ" />
1084 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
1085 <input type="submit" value="Suspend all holds" />
1087 [% IF AutoResumeSuspendedHolds %]
1088 <label for="suspend_until">until</label>
1089 <input type="text" size="10" id="suspend_until" name="suspend_until" class="datepicker" />
1090 <span class="hint">Specify date on which to resume [% INCLUDE 'date-format.inc' %]: </span>
1095 <fieldset class="action">
1096 <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
1097 <input type="hidden" name="from" value="circ" />
1098 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
1099 <input type="hidden" name="suspend" value="0" />
1100 <input type="submit" value="Resume all suspended holds" />
1103 [% END # IF SuspendHoldsIntranet %]
1106 <p>Patron has nothing on hold.</p>
1108 </div> <!-- reservesloop -->
1110 [% END %] <!-- borrowernumber -->
1118 [% UNLESS ( CGIselectborrower ) %][% IF ( borrowernumber ) %]<div class="yui-b">
1119 [% INCLUDE 'circ-menu.inc' %]
1120 </div>[% END %][% END %]
1122 [% INCLUDE 'intranet-bottom.inc' %]