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