Bug 11703 [QA Followup] - Allow keyboard navigation of tabs
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / moremember.tt
blobd6b95f8680d68ab2689e946e5e12170e33af0b27
1 [% USE KohaDates %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Patrons &rsaquo;
4 [% IF ( unknowuser ) %]
5     Patron does not exist
6 [% ELSE %]
7     Patron details for [% INCLUDE 'patron-title.inc' %]
8 [% END %]
9 </title>
10 [% INCLUDE 'doc-head-close.inc' %]
11 [% INCLUDE 'calendar.inc' %]
12 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/en/css/datatables.css" />
13 [% INCLUDE 'datatables.inc' %]
14 [% INCLUDE 'strings.inc' %]
15 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
16 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script>
17 [% INCLUDE 'timepicker.inc' %]
18 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.dataTables.rowGrouping.js"></script>
19 <script type="text/javascript" src="[% themelang %]/js/checkouts.js"></script>
20 <script type="text/javascript" src="[% themelang %]/js/holds.js"></script>
21 <script type="text/JavaScript">
22 //<![CDATA[
23 /* Set some variable needed in circulation.js */
24 var interface = "[% interface %]";
25 var theme = "[% theme %]";
26 var borrowernumber = "[% borrowernumber %]";
27 var branchcode = "[% branch %]";
28 var exports_enabled = "[% exports_enabled %]";
29 var AllowRenewalLimitOverride = [% CAN_user_circulate_override_renewals && AllowRenewalLimitOverride %];
30 var relatives_borrowernumbers = new Array();
31 [% FOREACH b IN relatives_borrowernumbers %]
32     relatives_borrowernumbers.push("[% b %]");
33 [% END %]
35 $(document).ready(function() {
36     $('#finesholdsissues').tabs({
37         // Correct table sizing for tables hidden in tabs
38         // http://www.datatables.net/examples/api/tabs_and_scrolling.html
39         "show": function(event, ui) {
40             var oTable = $('div.dataTables_wrapper>table', ui.panel).dataTable();
41             if ( oTable.length > 0 ) {
42                 oTable.fnAdjustColumnSizing();
43             }
44         },
45         "activate": function( event, ui ) {
46             $('#'+ui.newTab.context.id).click();
47         }
48     } );
49     $("#holdst").dataTable($.extend(true, {}, dataTablesDefaults, {
50         "sDom": 't',
51         "aoColumnDefs": [
52             { "aTargets": [ -1,-2 ], "bSortable": false, "bSearchable": false }
53         ],
54         "aoColumns": [
55             { "sType": "title-string" },{ "sType": "anti-the" },null,null,null,null,null,null
56         ],
57         "bPaginate": false
58     }));
59     [% IF ( picture ) %]
60     // new YAHOO.widget.Button("delpicture");   // FIXME: formatting mismatch between YUI and normal button
61         $('#delpicture').click(function(){
62                  return confirm(_("Are you sure you want to delete this patron image? This cannot be undone."));
63         });
64         $('#manage-patron-image').find("input[value*=Upload]").click(function(){
65         if($("#uploadfile").val() == ""){
66             alert(_("Please choose a file to upload"));
67             return false;
68         }
69         return confirm(_("Are you sure you want to replace the current patron image? This cannot be undone."));
70         });[% END %]
72     $("#suspend_until").datepicker({ minDate: 1 }); // require that hold suspended until date is after today
73     $("#newduedate").datetimepicker({
74         minDate: 1, // require that renewal date is after today
75         hour: 23,
76         minute: 59
77     });
78  });
79 function uncheck_sibling(me){
80 nodename=me.getAttribute("name");
81 if (nodename =="barcodes[]"){
82     var Node=me.parentNode.previousSibling;
83     while (Node.nodeName!="TD"){Node=Node.previousSibling}
84     var Nodes=Node.childNodes;
85     for (var i=0;i < Nodes.length;i++){
86       if (Nodes[i].nodeName=="INPUT" && Nodes[i].getAttribute("type")=="checkbox"){
87         Nodes[i].checked=false;
88       }     
89    }   
91 }else {
92     var Node=me.parentNode.nextSibling;
93     while (Node.nodeName!="TD"){Node=Node.nextSibling}
94     var Nodes=Node.childNodes;
95     for (var i=0;i<Nodes.length;i++){
96       if (Nodes[i].nodeName=="INPUT" && Nodes[i].getAttribute("type")=="checkbox"){
97         Nodes[i].checked=false;
98       }     
99    }   
102 function validate1(date) {
103     var today = new Date();
104     if ( date < today ) {
105         return true;
106      } else {
107         return false;
108      }
110 //]]>
111 </script>
113 </head>
114 <body id="pat_moremember" class="pat">
115 [% INCLUDE 'header.inc' %]
116 [% INCLUDE 'patron-search.inc' %]
118 <div id="breadcrumbs">
119          <a href="/cgi-bin/koha/mainpage.pl">Home</a>
120 &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
121 &rsaquo; [% IF ( unknowuser ) %]Patron does not exist[% ELSE %]Patron details for [% INCLUDE 'patron-title.inc' %][% END %]
122 </div>
124 <div id="doc3" class="yui-t1">
125    
126    <div id="bd">
127         <div id="yui-main">
128         <div class="yui-b">
129 [% INCLUDE 'members-toolbar.inc' %]
130 [% IF ( error ) %]
131 <div class="dialog alert">
132     [% IF ( AUTH_UPDATE_FAILED ) %]
133         <h3>Userid / Password update failed</h3>
134         <strong>Insufficient privileges.</strong>
135         <p>Other fields updated.</p>
136     [% END %]
137     [% IF ( CANT_DELETE_STAFF ) %]
138         <h3>Unable to delete staff user</h3>
139         <p>Insufficient privileges.</p>
140     [% END %]
141     [% IF ( CANT_DELETE_OTHERLIBRARY ) %]
142         <h3>Unable to delete patrons from other libraries with current settings</h3>
143         <p>Insufficient privileges.</p>
144     [% END %]
145     [% IF ( CANT_DELETE ) %]
146         <h3>Unable to delete patron</h3>
147         <p>Insufficient privileges.</p>
148     [% END %]
149 </div>
150 [% END %]
151 <div class="yui-g">
153 [% IF ( unknowuser ) %]
154    <div class="dialog message">This patron does not exist.</div>
155 [% ELSE %]
156     [% IF ( was_renewed ) %]<div class="dialog message">Patron's account has been renewed until [% dateexpiry %]</div>[% END %]
158     [% IF ( flagged ) %]
159     <div id="circmessages" class="circmessage attention">
160         <ul>
161         [% IF ( userdebarred ) %]
162             <li class="blocker">Patron is restricted[% IF ( userdebarreddate ) %] until [% userdebarreddate%] [% IF (debarredcomment ) %]([% debarredcomment %])[% END %][% END %]
163             <a href="#reldebarments" onclick="$('#debarments-tab-link').click()">View restrictions</a>
164             </li>
165         [% END %]
166         [% IF ( gonenoaddress ) %]<li class="blocker">Patron's address is in doubt.</li>[% END %]
167         [% IF ( lost ) %]<li class="blocker">Patron's card has been reported lost.</li>[% END %]
168         </ul>
169     </div>
170     [% END %]
172 <h3>[% UNLESS ( I ) %]
173    [% title %] [% firstname %] [% END %] [% surname %] ([% cardnumber %])</h3>
174  <div class="yui-u first">
175 <div id="patron-information" style="padding : .5em;">
177      [% UNLESS ( I ) %][% IF ( othernames ) %]&ldquo;[% othernames %]&rdquo;[% END %]
179 <p class="address">[% streetnumber %]
180         [% IF roadtype %][% roadtype %][% END %]
181         [% address %]<br />
182         [% IF ( address2 ) %][% address2 %]<br />[% END %]
183         [% IF ( city ) %][% city %][% END %] 
184         [% IF ( state ) %][% state %][% END %]
185         [% IF ( zipcode ) %][% zipcode %]<br />[% END %]
186         [% IF ( country ) %][% country %][% END %]</p>
187                     
188         <div class="rows">
189                 <ol>
190         [% IF ( I ) %]
191             [% IF ( phonepro ) %]<li><span class="label">Organization phone: </span>[% phonepro %]</li>[% END %]
192             [% IF ( emailpro ) %]<li><span class="label">Organization email: </span>[% emailpro %]</li>[% END %]
193         [% ELSE %]
194             [% IF ( phone ) %]<li><span class="label">Primary phone: </span>[% phone %]</li>[% END %]
195             [% IF ( mobile ) %]<li><span class="label">Secondary phone: </span>[% mobile %]</li>[% END %]
196             [% IF ( phonepro ) %]<li><span class="label">Other phone: </span>[% phonepro %]</li>[% END %]
197         [% END %]
199     [% IF ( P ) %]
200         [% IF ( phone ) %]<li><span class="label">Primary phone: </span>[% phone %]</li>[% END %]
201         [% IF ( mobile ) %]<li><span class="label">Secondary phone: </span>[% mobile %]</li>[% END %]
202     [% END %]           
203         [% IF ( fax ) %]<li><span class="label">Fax: </span>[% fax %]</li>[% END %]
204     [% UNLESS ( I ) %]
205         [% IF ( email ) %]<li><span class="label">Primary email:</span><a href="mailto:[% email %]">[% email %]</a></li>[% END %]
206         [% IF ( emailpro ) %]<li><span class="label">Secondary email: </span><a href="mailto:[% emailpro %]">[% emailpro %]</a></li>[% END %]
207     [% END %]
208     [% IF ( initials ) %]<li><span class="label">Initials: </span>[% initials %]</li>[% END %]
209     [% IF ( dateofbirth ) %]<li><span class="label">Date of birth:</span>[% dateofbirth %]</li>[% END %]
210     [% IF ( sex ) %]<li><span class="label">Gender:</span>
211     [% IF ( sex == 'F' ) %]Female[% ELSIF ( sex == 'M' ) %]Male[% ELSE %][% sex %][% END %]
212     </li>[% END %][% END %]
213     [% IF ( printethnicityline ) %]
214     <li><span class="label">Ethnicity:</span>[% ethnicity %]</li>
215     <li><span class="label">Ethnicity notes: </span>[% ethnotes %]</li>
216     [% END %]
217     [% IF ( isguarantee ) %]
218         [% IF ( guaranteeloop ) %]
219             <li><span class="label">Guarantees:</span><ul>[% FOREACH guaranteeloo IN guaranteeloop %]<li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guaranteeloo.borrowernumber %]">[% guaranteeloo.name %]  </a></li>[% END %]</ul></li>
220         [% END %]
221     [% ELSE %]
222         [% IF ( guarantorborrowernumber ) %]
223             <li><span class="label">Guarantor:</span><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantorborrowernumber %]">[% guarantorsurname %], [% guarantorfirstname %]</a></li>
224         [% END %]
225     [% END %]
226 </ol>
227 </div>
228       <div class="action">
229         [% IF ( guarantorborrowernumber ) %]
230         <a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=1&amp;guarantorid=[% guarantorborrowernumber %]">Edit</a>
231         [% ELSE %]
232         <a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=1">Edit</a>
233         [% END %]</div>
235 </div>
237 <!-- Begin Upload Patron Image Section -->
239 <div id="manage-patron-image">
240 [% IF ( patronimages ) %]
241     [% IF ( CAN_user_tools_batch_upload_patron_images ) %]
242         <form method="post" action="/cgi-bin/koha/tools/picture-upload.pl" enctype="multipart/form-data">
243             <fieldset class="brief">
244             [% IF ( picture ) %]
245                 <legend>Manage Patron Image</legend>
246                 <div class="hint">To update the image for [% title %] [% surname %], select a new image file and click 'Upload.' <br />Click the 'Delete' button to remove the current image.
247             [% ELSE %]
248                 <legend>Upload Patron Image</legend>
249                 <div class="hint">[% title %] [% firstname %] [% surname %] does not currently have an image available. To import an image for [% title %] [% surname %], enter the name of an image file to upload.
250             [% END %]
251                     <br />Only PNG, GIF, JPEG, XPM formats are supported.
252                 </div>
253                 <input type="hidden" id="image" name="filetype" value="image" />
254                 <input type="hidden" id="cardnumber" name="cardnumber" value="[% cardnumber %]" />
255                 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
256                 <ol>
257                     <li>
258                        <label for="uploadfile">Select the file to upload: </label><input type="file" id="uploadfile" name="uploadfile" />
259                     </li>
260                 </ol>
261                 <fieldset class="action">
262                     <input type="submit" value="Upload" class="submit" />
263                     <input name="op" type="hidden" value="Upload" />
264                     [% IF ( picture ) %]<a id="delpicture" href="/cgi-bin/koha/tools/picture-upload.pl?op=Delete&amp;cardnumber=[% cardnumber %]&amp;borrowernumber=[% borrowernumber %]" class="delete">Delete</a>[% END %]
265                 </fieldset>
266             </fieldset>
267         </form>
268     [% END %]
269 [% END %]
270 </div>
272 <!-- End Upload Patron Image Section -->
274 [% IF ( ExtendedPatronAttributes ) %]
275 [% UNLESS ( no_patron_attribute_types ) %]
276 <div id="patron-extended-attributes" style="padding-top: 1em;">
277 <h3>Additional attributes and identifiers</h3>
278 [% FOREACH attribute IN attributes_loop %]
279     [% IF attribute.class %]
280         <div id="aai_[% attribute.class %]" class="rows">
281     [% ELSE %]
282         <div id="aai" class="rows">
283     [% END %]
284         <h4>[% attribute.lib %]</h4>
285         <ol>
286         [% FOREACH item IN attribute.items %]
287             <li>
288                 <span class="label">[% item.description %]: </span>
289                 [% IF ( item.value_description ) %]
290                     [% item.value_description %]
291                 [% ELSE %]
292                     [% item.value| html_line_break %]
293                 [% END %]
294             </li>
295         [% END %]
296         </ol>
297     </div>
298 [% END %]
299 </div>
300 <div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=4">Edit</a></div>
301 [% END %]
302 [% END %]
304 [% IF ( EnhancedMessagingPreferences ) %]
305 <div id="patron-messaging-prefs" style="padding-top: 1em;">
306 <h3>Patron messaging preferences</h3>
307 [% INCLUDE 'messaging-preference-form.inc' %]
308  [% IF ( SMSSendDriver ) %]
309       <div class="rows"> <ol><li><span class="label">SMS number:</span>[% SMSnumber %]
310      </li></ol></div>
311  [% END %]
312 </div>
313 <div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=5">Edit</a></div>
314 [% END %]
316 </div>
317  <div class="yui-u"> 
318  <div id="patron-library-details">
319  <h3>Library use</h3>
320 <div class="rows"> 
321 <ol>
322     <li><span class="label">Card number: </span>[% cardnumber %]</li>
323         <li><span class="label">Borrowernumber: </span> [% borrowernumber %]</li>
324     <li><span class="label">Category: </span>[% description %] ([% categorycode %])</li>
325     <li><span class="label">Registration date: </span>[% dateenrolled %]</li>
326     
327     <li><span class="label">Expiration date: </span>
328     [% IF ( was_renewed ) %]
329             <strong class="reregistrinfo">[% dateexpiry %]</strong>
330     [% ELSE %]
331             [% dateexpiry %]
332     [% END %]
333     </li>
334     
335     <li><span class="label">Library: </span>[% branchname %]</li>
337     [% IF ( OPACPrivacy ) %]<li><span class="label">Privacy Pref:</span>
338          [% IF ( privacy0 ) %]Forever[% END %]
339          [% IF ( privacy1 ) %]Default[% END %]
340          [% IF ( privacy2 ) %]Never[% END %]
341     </li>[% END %]
342     [% IF ( sort1 ) %]<li><span class="label">Sort field 1:</span>[% lib1 %]</li>[% END %]
343     [% IF ( sort2 ) %]<li><span class="label">Sort field 2:</span>[% lib2 %]</li>[% END %]
344     <li><span class="label">Username: </span>[% userid %]</li>
345     <li><span class="label">Password: </span>
346     [% IF ( password ) %]
347         *******
348     [% ELSE %]
349         <span class="problem"><a href="/cgi-bin/koha/members/member-password.pl?member=[% borrowernumber %]">Undefined</a></span>
350     [% END %] 
351     </li>
352     [% IF ( borrowernotes ) %]<li><span class="label">Circulation note: </span>[% borrowernotes %]</li>[% END %]
353     [% IF ( opacnote ) %]<li><span class="label">OPAC note:</span>[% opacnote %]</li>[% END %]
354         </ol>
355         </div>
356  </div>
357     <div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=3">Edit</a></div>
359     [% UNLESS ( I ) %]
360  <div id="patron-alternate-address" style="padding-top: 1em;">
361     <h3>Alternate address</h3>
362     <div class="rows">  <ol><li><span class="label">Address: </span>[% B_address %]</li>
363       <li><span class="label">Address 2: </span>[% B_address2 %]</li>
364       <li><span class="label">City: </span>[% B_city %]</li>
365       [% IF ( B_state ) %]<li><span class="label">State: </span>[% B_state %]</li>[% END %]
366       <li><span class="label">Zip/Postal code: </span>[% B_zipcode %]</li>
367       [% IF ( B_country ) %]<li><span class="label">Country: </span>[% B_country %]</li>[% END %]
368       [% IF ( B_phone ) %]<li><span class="label">Phone: </span>[% B_phone %]</li>[% END %]
369       [% IF ( B_email ) %]<li><span class="label">Email: </span><a href="mailto:[% B_email %]">[% email %]</a></li>[% END %]</ol></div>
370 </div>
371 <div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=6">Edit</a></div>
372     [% END %]
374  <div id="patron-alternative-contact" style="padding-top: 1em;">
375  <h3>Alternative contact</h3>
376    <div class="rows"> <ol><li><span class="label">Surname: </span>[% altcontactsurname %]</li>
377     <li><span class="label">First name: </span>[% altcontactfirstname %]</li>    
378     <li><span class="label">Address: </span>[% altcontactaddress1 %]</li>
379     <li><span class="label">Address 2: </span>[% altcontactaddress2 %]</li>
380         <li><span class="label">City: </span>[% altcontactaddress3 %]</li>
381     [% IF ( altcontactstate ) %]<li><span class="label">State: </span>[% altcontactstate %]</li>[% END %]
382     <li><span class="label">Zip/Postal code: </span>[% altcontactzipcode %]</li>
383         [% IF ( altcontactcountry ) %]<li><span class="label">Country: </span>[% altcontactcountry %]</li>[% END %]
384     [% IF ( altcontactphone ) %]<li><span class="label">Phone: </span>[% altcontactphone %]</li>[% END %]
385     </ol></div>
386 </div>
387 <div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=2">Edit</a></div>
389 </div>
390 </div>
392 <div id="finesholdsissues" class="toptabs">
393     <ul>
394         <li><a href="#checkouts">[% issueloop.size %] Checkout(s)</a></li>
395         [% IF relatives_issues_count %]
396             <li><a href="#relatives-issues" id="relatives-issues-tab">Relatives' checkouts</a></li>
397         [% END %]
398         <li><a href="#finesandcharges">Fines &amp; Charges</a></li>
399         <li>
400             [% IF ( holds_count ) %]
401                 <a href="#reserves" id="holds-tab">[% holds_count %] Hold(s)</a>
402             [% ELSE %]
403                 <a href="#reserves" id="holds-tab">0 Holds</a>
404             [% END %]
405         </li>
406         <li><a id="debarments-tab-link" href="#reldebarments">[% debarments.size %] Restrictions</a></li>
407     </ul>
409     <div id="checkouts">
410         [% IF ( issuecount ) %]
411             <form name="issues" action="/cgi-bin/koha/tools/export.pl" method="post" class="checkboxed">
412                 <table id="issues-table" style="width: 100% !Important;">
413                     <thead>
414                         <tr>
415                             <th scope="col">&nbsp;</th>
416                             <th scope="col">Due date</th>
417                             <th scope="col">Due date</th>
418                             <th scope="col">Title</th>
419                             <th scope="col">Item type</th>
420                             <th scope="col">Checked out on</th>
421                             <th scope="col">Checked out from</th>
422                             <th scope="col">Call no</th>
423                             <th scope="col">Charge</th>
424                             <th scope="col">Price</th>
425                             <th scope="col">Renew <p class="column-tool"><a href="#" id="CheckAllRenewals">select all</a> | <a href="#" id="UncheckAllRenewals">none</a></p></th>
426                             <th scope="col">Check in <p class="column-tool"><a href="#" id="CheckAllCheckins">select all</a> | <a href="#" id="UncheckAllCheckins">none</a></p></th>
427                             <th scope="col">Export <p class="column-tool"><a href="#" id="CheckAllExports">select all</a> | <a href="#" id="UncheckAllExports">none</a></p></th>
428                         </tr>
429                     </thead>
430                     [% INCLUDE 'checkouts-table-footer.inc' %]
431                 </table>
433                 [% IF ( issuecount ) %]
434                     <fieldset class="action">
435                         [% IF ( CAN_user_circulate_override_renewals ) %]
436                             [% IF ( AllowRenewalLimitOverride ) %]
437                                 <label for="override_limit">Override renewal limit:</label>
438                                 <input type="checkbox" name="override_limit" id="override_limit" value="1" />
439                             [% END %]
440                         [% END %]
441                         <button class="btn" id="RenewCheckinChecked"><i class="icon-check"></i> Renew or return checked items</button>
442                         <button class="btn" id="RenewAll"><i class="icon-book"></i> Renew all</button>
443                     </fieldset>
445                     [% IF ( exports_enabled ) %]
446                         <fieldset>
447                             <label for="export_formats"><b>Export checkouts using format:</b></label>
448                             <select name="export_formats" id="export_formats">
449                                 <option value="iso2709_995">ISO2709 with items</option>
450                                 <option value="iso2709">ISO2709 without items</option>
451                                 [% IF ( export_with_csv_profile ) %]
452                                     <option value="csv">CSV</option>
453                                 [% END %]
454                             </select>
456                            <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" />
457                             <input type="hidden" name="op" value="export" />
458                             <input type="hidden" id="export_format" name="format" value="iso2709" />
459                             <input type="hidden" id="dont_export_item" name="dont_export_item" value="0" />
460                             <input type="hidden" id="record_type" name="record_type" value="bibs" />
461                             <button class="btn btn-small" id="export_submit"><i class="icon-download-alt"></i> Export</button>
462                         </fieldset>
463                     [% END %]
464                 [% END %]
465             </form>
466         [% ELSE %]
467             <p>Patron has nothing checked out.</p>
468         [% END %]
469     </div>
471 [% IF ( relatives_issues_count ) %]
472     <div id="relatives-issues">
473         <table id="relatives-issues-table" style="width: 100% !Important;">
474             <thead>
475                 <tr>
476                     <th scope="col">Due date</th>
477                     <th scope="col">Title</th>
478                     <th scope="col">Item type</th>
479                     <th scope="col">Checked out on</th>
480                     <th scope="col">Checked out from</th>
481                     <th scope="col">Call no</th>
482                     <th scope="col">Charge</th>
483                     <th scope="col">Price</th>
484                     <th scope="col">Patron</th>
485                 </tr>
486             </thead>
487         </table>
488     </div>
489 [% END %]
491 <div id="finesandcharges">
492     [% IF ( totaldue_raw ) %]
493         <p>Total due: [% totaldue %]</p>
494     [% ELSE %]
495         <p>No outstanding charges</p>
496     [% END %]
497 </div>
499 [% INCLUDE borrower_debarments.inc %]
501 <div id="reserves">
502 [% IF ( holds_count ) %]
503     <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
504         <input type="hidden" name="from" value="circ" />
505         <table id="holds-table" style="width: 100% !Important;">
506             <thead>
507                 <tr>
508                     <th>Hold date</th>
509                     <th>Title</th>
510                     <th>Call number</th>
511                     <th>Barcode</th>
512                     <th>Expiration</th>
513                     <th>Priority</th>
514                     <th>Delete?</th>
515                 </tr>
516             </thead>
517         </table>
519         <fieldset class="action">
520             <input type="submit" class="cancel" name="submit" value="Cancel marked holds" />
521         </fieldset>
522     </form>
524     [% IF SuspendHoldsIntranet %]
525     <fieldset class="action">
526         <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
527             <input type="hidden" name="from" value="borrower" />
528             <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
529             <input type="submit" value="Suspend all holds" />
531             [% IF AutoResumeSuspendedHolds %]
532             <label for="suspend_until">until</label>
533             <input type="text" size="10" id="suspend_until" name="suspend_until"/>
534             <span class="hint">Specify date on which to resume [% INCLUDE 'date-format.inc' %]: </span>
535             [% END %]
536         </form>
537     </fieldset>
539     <fieldset class="action">
540         <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
541             <input type="hidden" name="from" value="borrower" />
542             <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
543             <input type="hidden" name="suspend" value="0" />
544             <input type="submit" value="Resume all suspended holds" />
545         </form>
546     </fieldset>
547     [% END # IF SuspendHoldsIntranet %]
549     [% ELSE %]<p>Patron has nothing on hold.</p>[% END %]
550         </div>
552 </div>
553 [% END %] <!-- unknowuser -->
556 </div>
557 </div>
558 <div class="yui-b">
559 [% INCLUDE 'circ-menu.inc' %]
560 </div>
561 </div>
562 [% INCLUDE 'intranet-bottom.inc' %]