Bug 18469: Suspend all holds when specifying a date to resume hold does not keep...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / circulation.tt
1 [% USE Koha %]
2 [% USE Branches %]
3 [% USE KohaDates %]
4 [% USE Categories %]
5 [% USE ColumnsSettings %]
6 [% USE ItemTypes %]
7 [% USE Price %]
8 [% USE AuthorisedValues %]
9 [% INCLUDE 'doc-head-open.inc' %]
10 [% SET destination = "circ" %]
11 <title>Koha &rsaquo; Circulation
12 [% IF borrowernumber and borrower%]
13   &rsaquo; Checking out to [% INCLUDE 'patron-title.inc' invert_name = 1 %]
14 [% END %]
15 </title>
16 [% INCLUDE 'doc-head-close.inc' %]
17 [% INCLUDE 'calendar.inc' %]
18
19 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
20 [% INCLUDE 'strings.inc' %]
21 [% INCLUDE 'datatables.inc' %]
22 [% INCLUDE 'columns_settings.inc' %]
23 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
24 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script>
25 [% INCLUDE 'timepicker.inc' %]
26 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.dataTables.rowGrouping.js"></script>
27 <script type="text/javascript" src="[% interface %]/[% theme %]/js/pages/circulation.js"></script>
28 <script type="text/javascript" src="[% interface %]/[% theme %]/js/checkouts.js"></script>
29 <script type="text/javascript" src="[% interface %]/[% theme %]/js/holds.js"></script>
30 <script type="text/javascript">
31 //<![CDATA[
32 /* Set some variable needed in circulation.js */
33 var MSG_DT_LOADING_RECORDS = _("Loading... you may continue scanning.");
34 var interface = "[% interface %]";
35 var theme = "[% theme %]";
36 var borrowernumber = "[% borrowernumber %]";
37 var branchcode = "[% branch %]";
38 var exports_enabled = "[% Koha.Preference('ExportCircHistory') %]";
39 var AllowRenewalLimitOverride = [% (CAN_user_circulate_override_renewals && Koha.Preference('AllowRenewalLimitOverride') )? 1: 0 %];
40 var AllowCirculate = [% (CAN_user_circulate_circulate_remaining_permissions)? 1 : 0 %];
41 var script = "circulation";
42 var relatives_borrowernumbers = new Array();
43 [% FOREACH b IN relatives_borrowernumbers %]
44     relatives_borrowernumbers.push("[% b %]");
45 [% END %]
46
47 var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
48 var MSG_CONFIRM_DELETE_MESSAGE = _("Are you sure you want to delete this message? This cannot be undone.");
49
50 columns_settings = [% ColumnsSettings.GetColumns( 'circ', 'circulation', 'issues-table', 'json' ) %]
51
52 [% IF borrowernumber and borrower %]
53     if($.cookie("holdfor") != [% borrowernumber %]){
54         $.removeCookie("holdfor", { path: '/' });
55     }
56 [% ELSE %]
57     $.removeCookie("holdfor", { path: '/' });
58 [% END %]
59
60 [% UNLESS ( borrowernumber ) %][% UNLESS ( borrowers ) %]window.onload=function(){ $('#findborrower').focus(); };[% END %][% END %]
61
62 // On-site checkout
63 function toggle_onsite_checkout(){
64     if ( $("#onsite_checkout").prop('checked') ) {
65         $("#duedatespec").val("[% todaysdate | $KohaDates with_hours => 1%]")
66         [% IF !Koha.Preference('SpecifyDueDate') %]
67             $("#duedatespec").datetimepicker('destroy');
68         [% END %]
69     } else {
70         $("#duedatespec").datetimepicker({
71             onClose: function(dateText, inst) {
72                 if (validate_date(dateText, inst) ) {
73                     $("#barcode").focus();
74                 }
75             },
76             hour: 23,
77             minute: 59
78         }).on("change", function(e, value) {
79             if ( ! is_valid_date( $(this).val() ) ) {$(this).val("");}
80         });
81     }
82 }
83
84 function Dopop(link) {
85     var newin = window.open(link, 'popup', 'width=600,height=400,resizable=1,toolbar=0,scrollbars=1,top');
86 }
87 $(document).ready(function() {
88     $('#mainform').on('submit',function() {
89         if ($("#barcode") && $("#barcode").val()) {
90             $('#barcode').on('keypress',function(event) {
91                 $('#barcodeSubmittedModal').modal();
92                 event.preventDefault(); }
93             );
94         }
95     });
96
97     if ( $('#clubs-tab').length ) {
98         $('#clubs-tab-link').on('click', function() {
99             $('#clubs-tab').text(_("Loading..."));
100             $('#clubs-tab').load('/cgi-bin/koha/clubs/patron-clubs-tab.pl?borrowernumber=[% borrowernumber %]');
101         });
102     }
103
104     [% IF !( CircAutoPrintQuickSlip == 'clear' ) %]
105         // listen submit to trigger qslip on empty checkout
106         $('#mainform').bind('submit',function() {
107             if ($('#barcode').val() == '') {
108                 return printx_window( '[% CircAutoPrintQuickSlip %]' );
109             }
110         });
111     [% END %]
112     toggle_onsite_checkout();
113     $("#onsite_checkout").click(function(){
114         toggle_onsite_checkout();
115     });
116
117     $("#suspend_until").datepicker({
118         onClose: function(dateText, inst) {
119             validate_date(dateText, inst);
120         },
121         minDate: 1, // require that hold suspended until date is after today
122     });
123
124 });
125
126 //]]>
127 </script>
128 </head>
129 <body id="circ_circulation" class="circ">
130
131 [% INCLUDE 'header.inc' %]
132 [% INCLUDE 'circ-search.inc' %]
133
134 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo;
135 [% IF borrowernumber and borrower %]
136     <a href="/cgi-bin/koha/circ/circulation.pl">Checkouts</a> &rsaquo; [% INCLUDE 'patron-title.inc' %]
137 [% ELSE %]
138     <strong>Checkouts</strong>
139 [% END %]
140 </div>
141 [% IF ( $borrowers ) %]
142 <div id="doc" class="yui-t7">
143
144    <div id="bd">
145         <div id="yui-main">
146         <div class="yui-g">
147 [% ELSE %]
148 <div id="doc3" class="yui-t2">
149
150    <div id="bd">
151         <div id="yui-main">
152         <div class="yui-b">
153 [% END %]
154
155 [% IF borrowernumber and borrower %]
156 [% INCLUDE 'members-toolbar.inc' %]
157 [% END %]
158
159 <!--  INITIAL BLOC : PARAMETERS & BORROWER INFO -->
160 [% IF ( was_renewed ) %]<div class="dialog message">Patron's account has been renewed until [% expiry | $KohaDates %]</div>[% END %]
161
162 [% IF additional_materials %]
163     <div id="materials" class="dialog message">Note about the accompanying materials: <br />
164     [% additional_materials %]
165     </div>
166 [% END %]
167
168 [% IF ( alert.ITEM_LOST ) %]
169     <div class="dialog message">This item has been lost with a status of "[% alert.ITEM_LOST %]".</div>
170 [% END %]
171
172 [% IF ( alert.OTHER_CHARGES ) %]
173     <div class="dialog message">The patron has unpaid charges for holds, rentals etc of [% alert.OTHER_CHARGES %]</div>
174 [% END %]
175
176 [% IF alert.HIGHHOLDS %]
177     <div class="dialog message">High demand item. <b>Loan period was not shortened due to override.</b> Shortened due date would have been [% alert.HIGHHOLDS.returndate %] ([% alert.HIGHHOLDS.duration %] days).</div>
178 [% END %]
179
180 [% IF ( nopermission ) %]
181     <div class="dialog alert">Staff members are not allowed to discharge borrowers, nor borrowers to request a discharge.</div>
182 [% END %]
183
184 [% IF ( NEEDSCONFIRMATION ) %]
185 <div class="yui-g">
186
187 <div id="circ_needsconfirmation" class="dialog alert audio-alert-action">
188 [% IF CAN_user_circulate_force_checkout %]
189   <h3>Please confirm checkout</h3>
190 [% ELSE %]
191   <h3>Cannot check out</h3>
192 [% END %]
193
194 <ul>
195 [%IF ( AGE_RESTRICTION ) %]
196     <li>Age restriction [% AGE_RESTRICTION %].
197       [% IF CAN_user_circulate_force_checkout %]
198         Check out anyway?
199       [% END %]
200     </li>
201 [% END %]
202
203 [% IF ( DEBT ) %]
204     <li>The patron has a debt of [% DEBT %].</li>
205 [% END %]
206
207 [% IF ( DEBT_GUARANTEES ) %]
208     <li>The patron's guarantees collectively have a debt of [% DEBT_GUARANTEES | $Price %].</li>
209 [% END %]
210
211 [% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %]
212     <li>Rental charge for this item: [% RENTALCHARGE %]</li>
213 [% END %]
214
215 [% IF ( RENEW_ISSUE ) %]
216     <li>Item <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %]) is currently checked out to this patron.  Renew?</li>
217 [% END %]
218
219 [% IF ( RESERVE_WAITING ) %]
220     <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 [% Branches.GetName( resbranchcode ) %] since [% reswaitingdate | $KohaDates %]</li>
221 [% END %]
222
223 [% IF ( RESERVED ) %]
224     <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 [% Branches.GetName( resbranchcode ) %] since [% resreservedate | $KohaDates %]</li>
225 [% END %]
226
227 [% IF ( ISSUED_TO_ANOTHER ) %]
228     <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 %]).
229       [% IF CAN_user_circulate_force_checkout %]
230         Check in and check out?
231       [% END %]
232     </li>
233 [% END %]
234
235 [% IF TOO_MANY and TOO_MANY == 'TOO_MANY_CHECKOUTS' %]
236     <li>Too many checked out. [% current_loan_count %] checked out, only [% max_loans_allowed %] are allowed.</li>
237 [% END %]
238
239 [% IF TOO_MANY and TOO_MANY == 'TOO_MANY_ONSITE_CHECKOUTS' %]
240     <li>Too many on-site checked out. [% current_loan_count %] on-site checked out, only [% max_loans_allowed %] are allowed.</li>
241 [% END %]
242
243 [% IF ( BORRNOTSAMEBRANCH ) %]
244     <li>This patron is from a different library ([% Branches.GetName( BORRNOTSAMEBRANCH ) %])</li>
245 [% END %]
246
247 [% IF ( PATRON_CANT ) %]
248     <li>This patron can't check out this item per library circulation policy.</li>
249 [% END %]
250
251 [% IF ( TOO_MANY and TOO_MANY == 'NO_RULE_DEFINED' ) %]
252     <li>No circulation rule is defined for this patron and itemtype combination.</li>
253 [% END %]
254
255 [% IF ( NOT_FOR_LOAN_FORCING ) %]
256     <li>
257     [% IF ( itemtype_notforloan ) %]
258         Item type is normally not for loan.
259     [% ELSIF ( item_notforloan ) %]
260         [% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, item_notforloan, 0 ) %]
261         Item is normally not for loan [% IF (item_notforloan_lib) %]([% item_notforloan_lib %])[% END %].
262     [% END %]
263       [% IF CAN_user_circulate_force_checkout %]
264         Check out anyway?
265       [% END %]
266     </li>
267 [% END %]
268
269 [% IF ( USERBLOCKEDOVERDUE ) %]
270     <li>Patron has [% USERBLOCKEDOVERDUE %] overdue item(s).
271       [% IF CAN_user_circulate_force_checkout %]
272        Check out anyway?
273       [% END %]
274     </li>
275 [% END %]
276
277 [% IF ( ITEM_LOST ) %]
278     <li>This item has been lost with a status of "[% ITEM_LOST %]".
279       [% IF CAN_user_circulate_force_checkout %]
280         Check out anyway?
281       [% END %]
282     </li>
283 [% END %]
284
285 [% IF HIGHHOLDS %]
286     <li>High demand item. Loan period shortened to [% HIGHHOLDS.duration %] days (due [% HIGHHOLDS.returndate %]). Check out anyway?</li>
287 [% END %]
288
289 [% IF PREVISSUE %]
290     <li>Patron has previously checked out this title: <b>[% item.title %] [% IF item.author %] by [% item.author %][% END %]</b>. Check out anyway?</li>
291 [% END %]
292
293 [% IF BIBLIO_ALREADY_ISSUED %]
294   <li>
295     Patron has already checked out another item from this record.
296     [% IF CAN_user_circulate_force_checkout %]
297       Check out anyway?
298     [% END %]
299   </li>
300 [% END %]
301 </ul>
302
303 [% IF HIGHHOLDS %]
304 <script language="JavaScript" type="text/javascript">
305 $(document).ready(function() {
306     [% IF !override_high_holds %]
307         $("input[name=duedatespec]:hidden").val('[% HIGHHOLDS.returndate %]');
308         if ('[% duedatespec %]' === '') {
309             $("input[name=restoreduedatespec]:hidden").val('highholds_empty');
310         } else {
311             $("input[name=restoreduedatespec]:hidden").val('[% duedatespec %]');
312         }
313     [% END %]
314
315     $("#override_high_holds_tmp").on( 'change', function() {
316         if ( this.checked ) {
317             $("input[name=duedatespec]:hidden").val('');
318         }
319     });
320 });
321 </script>
322 [% END %]
323
324 [% IF CAN_user_circulate_force_checkout or HIGHHOLDS %]
325 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off">
326     <input type="hidden" name="restoreduedatespec" />
327
328 [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
329
330 [% IF HIGHHOLDS %]
331     <p class="circ-override-high-holds">
332     <input type="checkbox" name="override_high_holds_tmp" id="override_high_holds_tmp" value="1" />
333     <label for="override_high_holds_tmp">Don't decrease loan length based on holds</label>
334     </p>
335 [% END %]
336
337 [% IF ( RESERVED ) %]
338     <p>
339     <input type="checkbox" id="cancelreserve" name="cancelreserve" value="cancel" />
340     <label for="cancelreserve">Cancel hold</label>
341     </p>
342 [% END %]
343
344 [% IF ( RESERVE_WAITING ) %]
345 <p>
346     <label for="cancelreserve">Cancel hold</label>
347     <input type="radio" value="cancel" name="cancelreserve" id="cancelreserve" /><br />
348     <label for="revertreserve">Revert waiting status</label>
349     <input type="radio" value="revert" name="cancelreserve" id="revertreserve" checked="checked"/>
350 </p>
351 [% END %]
352
353     <input type="hidden" name="barcode" value="[% barcode |html %]" />
354     <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
355     <input type="hidden" name="issueconfirmed" value="1" />
356     <input type="hidden" name="override_high_holds" value="[% override_high_holds %]"/>
357     [% IF ( DEBT ) %]<input type="hidden" name="debt_confirmed" value="1" />[% END %]
358     [% IF ( INVALID_DATE ) %]
359     <p>
360     <input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" />
361     <label for="duedatespec">Due date</label>
362     </p>
363     [% ELSE %]
364     <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
365     [% END %]
366     <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
367     <input type="hidden" name="branch" value="[% branch %]" />
368     [% IF ( RENEW_ISSUE ) %]
369     <button type="submit" class="approve" accesskey="y"><i class="fa fa-check"></i> Yes, renew (Y)</button>
370     [% ELSE %]
371     <button type="submit" class="approve" accesskey="y"><i class="fa fa-check"></i> Yes, check out (Y)</button>
372     [% END %]
373     <input type="hidden" name="onsite_checkout" value="[% onsite_checkout %]" />
374     <input type="hidden" name="auto_renew" value="[% auto_renew %]" />
375 </form>
376 [% END %]
377
378 [% IF ( RESERVED ) %]
379 <form method="get" action="/cgi-bin/koha/circ/circulation.pl">
380     <input type="hidden" name="restoreduedatespec" />
381     <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
382     <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
383     <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
384     <button class="print" type="submit" onclick="Dopop('hold-transfer-slip.pl?borrowernumber=[% reserveborrowernumber %]&amp;biblionumber=[% itembiblionumber %]&amp;op=slip');this.form.submit();"><i class="fa fa-print"></i> Don't check out and print slip (P)</button>
385 </form>
386 [% END %]
387
388 [% IF ( RESERVE_WAITING ) %]
389 <form method="get" action="/cgi-bin/koha/circ/circulation.pl">
390     <input type="hidden" name="restoreduedatespec" />
391     <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
392     <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
393     <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
394     <button class="print" type="submit" onclick="Dopop('hold-transfer-slip.pl?borrowernumber=[% reserveborrowernumber %]&amp;biblionumber=[% itembiblionumber %]&amp;op=slip');this.form.submit();"><i class="fa fa-print"></i> Don't check out and print slip (P)</button>
395 </form>
396 [% END %]
397
398 <form method="get" action="/cgi-bin/koha/circ/circulation.pl">
399     [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
400     <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
401     <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
402     <input type="hidden" name="restoreduedatespec" />
403     <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
404     [% IF CAN_user_circulate_force_checkout or HIGHHOLDS %]
405         [% IF ( RENEW_ISSUE ) %]
406         <button type="submit" class="deny" accesskey="n"><i class="fa fa-times"></i> No, don't renew (N)</button>
407         [% ELSE %]
408         <button type="submit" class="deny" accesskey="n"><i class="fa fa-times"></i> No, don't check out (N)</button>
409         [% END %]
410     [% ELSE %]
411         <button type="submit" class="deny"><i class="fa fa-times"></i> Continue</button>
412     [% END %]
413 </form>
414
415 [% IF ( RESERVED || ISSUED_TO_ANOTHER ) && (CAN_user_reserveforothers_place_holds ) %]
416     [% UNLESS noissues %]
417         <button type="submit" onclick="window.location.href='/cgi-bin/koha/reserve/request.pl?biblionumber=[% itembiblionumber %]&borrowernumber=[% borrowernumber %]'"><i class="fa fa-sticky-note-o"></i> Cancel checkout and place a hold for [% INCLUDE 'patron-title.inc' %]</button>
418     [% END %]
419 [% END %]
420 </div></div>
421 [% END %] <!-- NEEDSCONFIRMATION -->
422
423         [% IF ( IMPOSSIBLE ) %]
424
425 <div class="yui-g">
426 <div id="circ_impossible" class="dialog alert audio-alert-warning">
427     [% IF ( UNKNOWN_BARCODE ) %]
428         <h3>Barcode not found</h3>
429     [% END %]
430 <!-- RESULT OF ISSUING REQUEST -->
431         <ul>
432         [% IF ( STATS ) %]
433             <li>Local use recorded</li>
434         [% END %]
435
436         [% IF ( INVALID_DATE ) %]
437             <li>The due date &quot;[% INVALID_DATE %]&quot; is invalid</li>
438         [% END %]
439
440         [% IF ( UNKNOWN_BARCODE ) %]
441             <li>The barcode was not found: <span class="ex">[% barcode |html %]</span>
442             [% IF ( fast_cataloging ) %]
443                 [% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
444             <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA&amp;barcode=[% barcode |uri %]&amp;circborrowernumber=[% borrowernumber %]&amp;branch=[% branch %]&amp;duedatespec=[% duedatespec %]&amp;stickyduedate=[% stickyduedate %]">Add record using fast cataloging</a>
445                 [% END %]
446             [% END %]
447
448         [% IF ( FALLBACK ) %]
449             [% IF options %]
450                 <br />The following items were found by searching:
451                 [% FOREACH book IN options %]
452                     <br />
453                     <form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off">
454                     [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
455                         <input type="hidden" name="restoreduedatespec" />
456                         <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
457                         <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
458                         <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
459                         <input type="hidden" name="branch" value="[% branch %]" />
460                         <input type="hidden" name="barcode" value="[% book.barcode %]" />
461                         <button type="submit" name="x"><i class="fa fa-check"></i> Check out [% book.barcode %]: [% book.title %]</button>
462                     </form>
463                 [% END %]
464             [% ELSE %]
465                 <br />No items were found by searching.
466             [% END %]
467         [% END %]
468
469      </li>
470         [% END %]
471
472         [% IF ( NOT_FOR_LOAN ) %]
473             <li>
474             [% IF ( itemtype_notforloan ) %]
475                 Item type not for loan.
476             [% ELSIF ( item_notforloan ) %]
477                 [% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, item_notforloan, 0 ) %]
478                 Item not for loan [% IF (item_notforloan_lib) %]([% item_notforloan_lib %])[% END %].
479             [% END %]
480             </li>
481         [% END %]
482
483         [% IF ( WTHDRAWN ) %]
484             <li>Item has been withdrawn</li>
485         [% END %]
486
487         [% IF ( RESTRICTED ) %]
488             <li>Item is restricted</li>
489         [% END %]
490
491         [% IF ( GNA ) %]
492             <li>Patron's address is in doubt</li>
493         [% END %]
494
495         [% IF ( CARD_LOST ) %]
496             <li>Patron's card is lost</li>
497         [% END %]
498
499         [% IF ( DEBARRED ) %]
500             <li>Patron is restricted</li>
501         [% END %]
502
503         [% IF ( NO_MORE_RENEWALS ) %]
504             <li>No more renewals possible</li>
505         [% END %]
506
507         [% IF NO_RENEWAL_FOR_ONSITE_CHECKOUTS %]
508             <li>This item can not be renewed, it's an on-site checkout</li>
509         [% END %]
510
511         [%IF ( AGE_RESTRICTION ) %]
512             <li>Age restriction [% AGE_RESTRICTION %].</li>
513         [% END %]
514
515         [% IF ( EXPIRED ) %]
516             <li>Patron's card is expired</li>
517         [% END %]
518
519         [% IF ( TOO_MANY ) %]
520             <li>Too many checked out. [% current_loan_count %] checked out, only [% max_loans_allowed %] are allowed.</li>
521         [% END %]
522
523         [% IF ( ITEMNOTSAMEBRANCH ) %]
524             <li>This item belongs to [% Branches.GetName( itemhomebranch ) %] and cannot be checked out from this location.</li>
525         [% END %]
526
527         [% IF RETURN_IMPOSSIBLE %]
528             <li>This item must be returned to [% Branches.GetName( branch_to_return ) %].</li>
529         [% END %]
530
531         [% IF ( USERBLOCKEDWITHENDDATE ) %]
532             <li>Patron has a restriction until [% USERBLOCKEDWITHENDDATE | $KohaDates %].</li>
533         [% END %]
534
535         [% IF ( USERBLOCKEDNOENDDATE ) %]
536             <li>Patron has an indefinite restriction.</li>
537         [% END %]
538
539         [% IF ( USERBLOCKEDOVERDUE ) %]
540             <li>Checkouts are BLOCKED because patron has overdue items.</li>
541         [% END %]
542         </ul>
543
544         [% IF (forceallow) %]
545             <li>Restriction overridden temporarily.</li>
546         [% END %]
547
548 </div></div>
549 [% ELSE %]
550   [% IF (forceallow) %]
551       <div id="overridden_debarment" class="dialog alert">Restriction overridden temporarily</div>
552   [% END %]
553 [% END %] <!-- /impossible -->
554
555 <span class="audio-alert-success"></span>
556
557 [% IF ( issued ) %]
558 <p>Item checked out</p>
559 [% END %]
560
561 [% IF ( message ) %]
562 [% INCLUDE 'patron-toolbar.inc' %]
563 <h4>
564 No patron matched <span class="ex">[% message | html %]</span>
565 </h4>
566 [% END %]
567
568 [% IF ( borrowers ) %]
569 [% INCLUDE 'patron-toolbar.inc' %]
570
571 <fieldset id="circ_circulation_selectborrower">
572     [% INCLUDE 'circ-patron-search-results.inc' destination = "circ" %]
573 </fieldset>
574 [% ELSE %]
575
576 <!-- BARCODE ENTRY -->
577
578 [% IF borrowernumber and borrower %]
579 <div class="yui-g">
580
581 [% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %]
582     <div class="dialog alert"><strong>Error:</strong> This patron has requested their circulation history be anonymized on check-in, but the AnonymousPatron system preference is empty or incorrect.</div>
583 [% END %]
584
585 [% IF ( !noissues ) || ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') )%]
586 <div class="yui-u first">
587
588 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
589     <input type="hidden" name="restoreduedatespec" />
590 [% IF ( issue ) %]
591     <fieldset id="circ_circulation_issue" class="lastchecked">
592 [% ELSE %]
593     <fieldset id="circ_circulation_issue">
594 [% END %]
595     [% IF ( DisplayClearScreenButton ) %]
596         <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
597     [% END %]
598
599     [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
600
601     <label class="circ_barcode" for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label>
602
603         [% IF Koha.Preference('itemBarcodeFallbackSearch') %]
604             <div class="hint">Enter item barcode or keyword:</div>
605         [% ELSE %]
606             <div class="hint">Enter item barcode:</div>
607         [% END %]
608
609     [% IF NEEDSCONFIRMATION %]
610         <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" disabled="disabled" />
611     [% ELSE %]
612         <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" />
613     [% END %]
614     <button type="submit" class="btn btn-default">Check out</button>
615
616     <div id="show-checkout-settings">
617         <a href="#"><i class="fa fa-caret-right checkout-settings-icon"></i> Checkout settings</a>
618     </div>
619
620     <div class="checkout-settings">
621
622         [% UNLESS ( noissues && Koha.Preference('OnSiteCheckoutsForce') ) %]
623             [% IF ( SpecifyDueDate ) %]
624                 <div id="specify-due-date" class="checkout-setting">
625                     <div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div>
626                     [% IF ( duedatespec ) %]
627                         <input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" />
628                     [% ELSE %]
629                         <input type="text" size="13" id="duedatespec" name="duedatespec" value="" />
630                     [% END %]
631                     <label for="stickyduedate"> Remember for session:</label>
632                     [% IF ( stickyduedate ) %]
633                         <input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" checked="checked" />
634                     [% ELSE %]
635                         <input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" />
636                     [% END %]
637                     <button class="btn btn-default btn-sm action" id="cleardate" name="cleardate" onclick="this.checked = false; this.form.duedatespec.value = ''; this.form.stickyduedate.checked = false; this.form.barcode.focus(); return false;" >Clear</button>
638                 </div>
639             [% END %]
640         [% END %]
641
642         [% UNLESS ( noissues ) %]
643             <div id="set-automatic-renewal" class="checkout-setting">
644                 [% IF NEEDSCONFIRMATION %]
645                     <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" disabled="disabled" />
646                 [% ELSE %]
647                     <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" class="circ_setting" />
648                 [% END %]
649
650                 <label for="auto_renew">Automatic renewal</label>
651             </div>
652             [% IF Koha.Preference('decreaseLoanHighHolds') %]
653                 <div id="set_high_holds_overrride" class="checkout-setting">
654                     [% IF NEEDSCONFIRMATION %]
655                         [% IF override_high_holds %]
656                             <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" disabled="disabled" checked="checked"/>
657                         [% ELSE %]
658                             <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" disabled="disabled"/>
659                         [% END %]
660                     [% ELSE %]
661                         [% IF override_high_holds %]
662                             <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" class="circ_setting" checked="checked" />
663                         [% ELSE %]
664                             <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" class="circ_setting" />
665                         [% END %]
666                     [% END %]
667                     <label for="override_high_holds">Don't decrease checkout length based on holds</label>
668                 </div>
669             [% END %]
670         [% END %]
671
672         [% IF Koha.Preference('OnSiteCheckouts') %]
673             <div id="onsite_checkout-select" class="checkout-setting">
674                 [% IF noissues %]
675                     <div class="onsite-checkout-only">
676                         <input type="checkbox" id="onsite_checkout" name="onsite_checkout_forced" checked="checked" disabled="disabled" /> <label for="onsite_checkout">On-site checkouts only. Automatic due date: </label>
677                         <input type="text" name="duedatespec" id="duedatespec" />
678                         <input type="hidden" name="onsite_checkout" checked="checked" value="1" />
679                     </div>
680                 [% ELSE %]
681                     <input type="checkbox" id="onsite_checkout" name="onsite_checkout" class="circ_setting" /> <label for="onsite_checkout">On-site checkout</label>
682                 [% END %]
683             </div>
684         [% END %]
685
686     </div> <!-- /.checkout-settings -->
687
688           <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" />
689           <input type="hidden" name="branch" value="[% branch %]" />
690           <input type="hidden" name="print" value="maybe" />
691           <input type="hidden" name="debt_confirmed" value="[% debt_confirmed %]" />
692                 [% IF ( CHARGES ) %]
693                         <input type="hidden" name="charges" value="yes" />
694                         <input type="hidden" name="oldamount" value="[% amountold %]" />
695                 [% END %]
696 </fieldset>
697 [% IF ( issue ) %]
698     <div class="lastchecked">
699         <p><strong>Checked out: </strong>[% issue.item.biblioitemnumber.biblionumber.title %] ([% issue.item.barcode %]). Due on [% issue.date_due | $KohaDates %]</p>
700     </div>
701 [% END %]
702 </form></div>
703
704 [% END %]<!-- /unless noissues -->
705
706 [% IF ( noissues ) %]
707     [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
708         <div class="yui-u">
709     [% ELSE %]
710         <div>
711     [% END %]
712 [% ELSE %]
713     <div class="yui-u">
714 [% END %]
715
716         [% IF ( noissues ) %]
717             [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
718                 <div id="circmessages" class="circmessage attention">
719             [% ELSE %]
720                 <h4>Checking out to [% INCLUDE 'patron-title.inc' %]</h4>
721                 <div id="circmessages" class="circmessage warning">
722             [% END %]
723             <h3>
724                 Cannot check out!
725                 [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
726                     <span class="circ-hlt">Only on-site checkouts are allowed</span>
727                 [% END %]
728             </h3>
729         [% ELSE %]
730             <div id="circmessages" class="circmessage attention">
731                 <h3>Attention:</h3>
732         [% END %]
733
734                 <ul>
735
736                    [% IF ( has_modifications ) %]
737                     <li><span class="circ-hlt">Pending modifications:</span> Patron has pending modifications.
738                             [% IF CAN_user_borrowers && ( !Koha.Preference('IndependentBranchesPatronModifications') || borrower.branch == branch ) %]
739                                     <a href="/cgi-bin/koha/members/members-update.pl">View all pending patron modifications</a>
740                             [% END %]
741                    </li>
742                   [% END %]
743
744                         [% IF ( warndeparture ) %]
745                         <li><span class="circ-hlt">Expiration:</span> Patron's card will expire soon.
746             Patron's card expires on [% expiry | $KohaDates %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% borrowernumber %]&amp;destination=circ&amp;reregistration=y">Renew</a> or <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&amp;destination=circ&amp;borrowernumber=[% borrowernumber %]&amp;categorycode=[% categorycode %]">Edit Details</a>
747
748                         </li>
749                         [% END %]
750
751                         [% IF ( returnbeforeexpiry ) %]
752                          <li><span class="circ-hlt">Set due date to expiry:</span> You have the ReturnBeforeExpiry system preference enabled this means if the
753                          expiry date is before the date due, the date due will be set to the expiry date
754                          </li>
755                         [% END %]
756
757                         [% IF ( expired ) %]
758                         <li><span class="circ-hlt">Expiration:</span> Patron's card has expired.
759             [% IF ( expiry ) %]Patron's card expired on [% expiry | $KohaDates %][% END %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% borrowernumber %]&amp;destination=circ&amp;reregistration=y">Renew</a> or <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&amp;destination=circ&amp;borrowernumber=[% borrowernumber %]&amp;categorycode=[% categorycode %]">Edit Details</a>
760
761                         </li>
762                         [% END %]
763
764             [% IF ( gna ) %]
765                         <li class="blocker"><span class="circ-hlt">Address:</span> Patron's address in doubt</li>
766                         [% END %]
767
768             [% IF ( lost ) %]
769                         <li class="blocker"><span class="circ-hlt">Lost: </span>Patron's card is lost</li>
770                         [% END %]
771
772             [% IF ( userdebarred ) %]
773                <li class="blocker">
774                    <span class="circ-hlt"> Restricted:</span> Patron's account is restricted
775
776                    [% IF ( userdebarreddate ) %]
777                        until [% userdebarreddate | $KohaDates %]
778                    [% END %]
779
780                    [% IF ( debarredcomment ) %]
781                        with the explanation: <br/><i>
782                            [% IF debarredcomment.search('OVERDUES_PROCESS') %]
783                                Restriction added by overdues process [% debarredcomment.remove('OVERDUES_PROCESS ') | html_line_break %]
784                            [% ELSE %]
785                                [% debarredcomment | html_line_break %]
786                            [% END %]
787                     </i>
788                    [% END %]
789                    <br/>
790                    <a class="btn btn-default btn-sm" href="#reldebarments" onclick="$('#debarments-tab-link').click()"><i class="fa fa-ban"></i> View restrictions</a>
791                     [% IF (noissues && borrowernumber && CAN_user_circulate_force_checkout) %]
792                         <span class="override_debarment">
793                             <a href="/cgi-bin/koha/circ/circulation.pl?forceallow=1&amp;borrowernumber=[% borrowernumber %]" class="btn btn-default btn-sm">Override restriction temporarily</a>
794                         </span>
795                     [% END %]
796                </li>
797             [% END %]
798
799                 [% IF ( odues ) %]<li>[% IF ( nonreturns ) %]<span class="circ-hlt">Overdues: Patron has ITEMS OVERDUE.</span> <a href="#checkouts">See highlighted items below</a>[% END %]</li>
800             [% END %]
801
802             [% IF ( charges ) %]
803                 [% INCLUDE 'blocked-fines.inc' fines = chargesamount %]
804             [% END %]
805
806             [% IF ( charges_guarantees ) %]
807                 <li>
808                     <span class="circ-hlt">Fees &amp; Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees %].
809                         [% IF ( charges_guarantees_is_blocker ) %]
810                             <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
811                         [% END %]
812                 </li>
813             [% END %]
814
815
816             [% IF ( credits ) %]
817                 <li>
818                     <span class="circ-hlt">Credits:</span> Patron has a credit[% IF ( creditsamount ) %] of [% creditsamount %][% END %]
819                 </li>
820             [% END %]
821
822                         </ul>
823         </div>
824
825             [% IF WaitingHolds.count %]
826                 <div id="holdswaiting" class="circmessage">
827                     <h4>Holds waiting:</h4>
828                     [% FOREACH w IN WaitingHolds %]
829                         <ul>
830                             <li>
831                                 <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber %]">[% w.biblio.title | html %]</a>
832                                 ([% ItemTypes.GetDescription( w.item.effective_itemtype ) %]),
833                                 [% IF ( w.biblio.author ) %] by [% w.biblio.author | html %] [% END %]
834                                 [% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber %]] [% END %]
835                                 Hold placed on [% w.reservedate | $KohaDates %].
836
837                                 <br/>
838                                 [% IF ( w.branch.branchcode == Branches.GetLoggedInBranchcode()  ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %]
839                                     [% SET expires_on = w.expirationdate %]
840                                     Waiting at [% w.branch.branchname | html %] [% IF expires_on %] until [% expires_on | $KohaDates %] [% END %]
841                                 </strong>
842                             </li>
843                         </ul>
844                     [% END %]
845                 </div>
846             [% END %]
847
848         [% IF ( notes ) %]
849                         <div id="circnotes" class="circmessage">
850                         <h4>Notes:</h4>
851             <p><span class="circ-hlt">[% notesmsg %]</span></p>
852                         </div>
853
854
855     <!-- /If notes -->[% END %]
856
857     <div id="messages" class="circmessage">
858         <h4>Messages:</h4>
859         <ul>
860             [% FOREACH message IN messages %]
861                 <li>
862                     [% IF(message.message_type == "L") %]
863                         <span class="circ-hlt">
864                     [% ELSE %]
865                         <span>
866                     [% END %]
867                         [% message.message_date | $KohaDates %]
868                         [% Branches.GetName( message.branchcode ) %]
869                         [% IF message.manager_id %]
870                             ( <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% message.manager_id %]">[% message.get_column('manager_firstname') %] [% message.get_column('manager_surname') %]</a> )
871                         [% END %]
872                         <i>"[% message.message | html %]"</i>
873                     </span>
874                     [% IF message.branchcode == branch OR Koha.Preference('AllowAllMessageDeletion') %]
875                         <a class="btn btn-link btn-sm" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% message.message_id %]&amp;borrowernumber=[% message.borrowernumber %]" onclick="return confirm(MSG_CONFIRM_DELETE_MESSAGE);"><i class="fa fa-trash"></i> Delete</a>
876                     [% END %]
877                 </li>
878             [% END %]
879         </ul>
880         <a id="addnewmessageLabel" href="#add_message_form" class="btn btn-link btn-sm" data-toggle="modal"><i class="fa fa-plus"></i> Add a new message</a>
881     </div>
882
883 </div>
884 </div>
885
886 <div class="yui-g"><div id="patronlists" class="toptabs">
887
888 <ul>
889     <li>
890         [% IF ( issuecount ) %]
891             <a href="#checkouts">[% issuecount %] Checkout(s)</a>
892         [% ELSE %]
893             <a href="#checkouts">0 Checkouts</a>
894         [% END %]
895     </li>
896
897     [% IF relatives_issues_count %]
898         <li><a id="relatives-issues-tab" href="#relatives-issues">Relatives' checkouts</a></li>
899     [% END %]
900
901     <li>
902         [% IF ( holds_count ) %]
903             <a href="#reserves" id="holds-tab">[% holds_count %] Hold(s)</a>
904         [% ELSE %]
905             <a href="#reserves" id="holds-tab">0 Holds</a>
906         [% END %]
907     </li>
908
909     [% IF Koha.Preference('ArticleRequests') %]
910         <li>
911             <a href="#article-requests" id="article-requests-tab"> [% patron.article_requests_current.count %] Article requests</a>
912         </li>
913     [% END %]
914
915     <li><a id="debarments-tab-link" href="#reldebarments">[% debarments.count %] Restrictions</a></li>
916
917     [% SET enrollments = patron.get_club_enrollments(1) %]
918     [% SET enrollable  = patron.get_enrollable_clubs(0,1) %]
919     [% IF CAN_user_clubs && ( enrollable.count || enrollments.count ) %]
920         <li>
921             <a id="clubs-tab-link" href="#clubs-tab">
922                 Clubs ([% enrollments.count %]/[% enrollable.count %])
923             </a>
924         </li>
925     [% END %]
926
927 </ul>
928
929 <!-- SUMMARY : TODAY & PREVIOUS ISSUES -->
930
931 [% INCLUDE "checkouts-table.inc" %]
932
933 [% IF ( relatives_issues_count ) %]
934     <div id="relatives-issues">
935         <table id="relatives-issues-table">
936             <thead>
937                 <tr>
938                     <th scope="col">Due date (unformatted, hidden)</th>
939                     <th scope="col">Due date</th>
940                     <th scope="col">Title</th>
941                     <th scope="col">Item type</th>
942                     <th scope="col">Location</th>
943                     <th scope="col">Checked out on</th>
944                     <th scope="col">Checked out from</th>
945                     <th scope="col">Call no</th>
946                     <th scope="col">Charge</th>
947                     <th scope="col">Fine</th>
948                     <th scope="col">Price</th>
949                     <th scope="col">Patron</th>
950                 </tr>
951             </thead>
952         </table>
953     </div>
954 [% END %]
955
956 [% IF CAN_user_clubs && ( enrollable.count || enrollments.count ) %]
957     <div id="clubs-tab">
958         Loading...
959     </div>
960 [% END %]
961
962 [% INCLUDE borrower_debarments.inc %]
963
964 <div id="reserves">
965 [% IF ( holds_count ) %]
966     <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
967         <input type="hidden" name="from" value="circ" />
968         <table id="holds-table" style="width: 100% !Important;">
969             <thead>
970                 <tr>
971                     <th>Hold date</th>
972                     <th>Title</th>
973                     <th>Call number</th>
974                     <th>Barcode</th>
975                     <th>Pickup at</th>
976                     <th>Expiration</th>
977                     <th>Priority</th>
978                     <th>Delete?</th>
979                     <th>Suspend?</th>
980                 </tr>
981             </thead>
982         </table>
983
984         <fieldset class="action">
985             <input type="submit" class="cancel" name="submit" value="Cancel marked holds" />
986         </fieldset>
987     </form>
988
989     [% IF SuspendHoldsIntranet %]
990     <fieldset class="action">
991         <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
992             <input type="hidden" name="from" value="circ" />
993             <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
994             <input type="submit" value="Suspend all holds" />
995
996             [% IF AutoResumeSuspendedHolds %]
997             <label for="suspend_until">until</label>
998             <input type="text" size="10" id="suspend_until" name="suspend_until" />
999             <span class="hint">Specify date on which to resume [% INCLUDE 'date-format.inc' %]: </span>
1000              [% END %]
1001         </form>
1002     </fieldset>
1003
1004     <fieldset class="action">
1005         <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
1006             <input type="hidden" name="from" value="circ" />
1007             <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
1008             <input type="hidden" name="suspend" value="0" />
1009             <input type="submit" value="Resume all suspended holds" />
1010         </form>
1011     </fieldset>
1012     [% END # IF SuspendHoldsIntranet %]
1013
1014 [% ELSE %]
1015         <p>Patron has nothing on hold.</p>
1016 [% END %]
1017 </div> <!-- reservesloop -->
1018
1019 [% IF Koha.Preference('ArticleRequests') %]
1020     [% INCLUDE 'patron-article-requests.inc' %]
1021 [% END %]
1022
1023 [% ELSIF borrowernumber %]
1024     <div class="dialog message">This patron does not exist. <a href="/cgi-bin/koha/members/members-home.pl">Find another patron?</a></div>
1025 [% END %] <!-- borrowernumber and borrower-->
1026 </div></div>
1027 [% END %]
1028 [% IF Koha.Preference('CircSidebar') %]
1029 [% UNLESS ( borrowers ) %]
1030     [% IF not( borrowernumber and borrower ) %]
1031         <div class="yui-b noprint">
1032             [% INCLUDE 'circ-nav.inc' %]
1033         </div>
1034     [% END %]
1035 [% END %]
1036 [% END %]
1037 </div>
1038 </div>
1039 [% UNLESS ( borrowers ) %]
1040     [% IF borrowernumber and borrower %]
1041         <div class="yui-b">
1042             [% INCLUDE 'circ-menu.inc' %]
1043         </div>
1044     [% END %]
1045 [% END %]
1046 </div>
1047 <!-- Modal -->
1048 <div id="barcodeSubmittedModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="barcodeSubmittedModalLabel" aria-hidden="true">
1049     <div class="modal-dialog">
1050     <div class="modal-content">
1051     <div class="modal-header">
1052         <h3 id="barcodeSubmittedModalLabel">Barcode submitted</h3>
1053     </div>
1054
1055     <div class="modal-body">
1056         <p>You have already submitted a barcode, please wait for the checkout to process...</p>
1057     </div>
1058     </div>
1059     </div>
1060 </div>
1061 [% INCLUDE 'intranet-bottom.inc' %]