Bug 10020: Remove code related to ethnicity
[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
144 [% IF ( error ) %]
145 <div class="dialog alert">
146     [% IF ( error == 'CANT_DELETE_STAFF' ) %]
147         <h3>Unable to delete staff user</h3>
148         <p>Insufficient privileges.</p>
149     [% END %]
150     [% IF ( error == 'CANT_DELETE_YOURSELF' ) %]
151         <h3>Not allowed to delete own account</h3>
152         <p>Deleting your own account would lock you out of Koha.</p>
153     [% END %]
154     [% IF ( error == '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 ( error == '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's account is restricted
176                [% IF ( userdebarreddate ) %]
177                    until [% userdebarreddate %]
178                [% END %]
179
180                [% IF ( debarredcomment ) %]
181                    with the explanation: <i>[% debarredcomment | html_line_break %]</i>
182                [% END %]
183                 <a href="#reldebarments" onclick="$('#debarments-tab-link').click()">View restrictions</a>
184             </li>
185         [% END %]
186         [% IF ( gonenoaddress ) %]<li class="blocker">Patron's address is in doubt.</li>[% END %]
187         [% IF ( lost ) %]<li class="blocker">Patron's card has been reported lost.</li>[% END %]
188         </ul>
189     </div>
190     [% END %]
191
192 <h3>[% UNLESS ( I ) %]
193    [% title %] [% firstname %] [% END %] [% surname %] ([% cardnumber %])</h3>
194  <div class="yui-u first">
195 <div id="patron-information" style="padding : .5em;">
196
197      [% UNLESS ( I ) %][% IF ( othernames ) %]&ldquo;[% othernames %]&rdquo;[% END %]
198
199     <div class = "address">
200         [% IF Koha.Preference( 'AddressFormat' ) %]
201             [% INCLUDE "member-display-address-style-${ Koha.Preference( 'AddressFormat' ) }.inc" %]
202         [% ELSE %]
203             [% INCLUDE 'member-display-address-style-us.inc' %]
204         [% END %]
205     </div>
206                     
207         <div class="rows">
208                 <ol>
209         [% IF ( I ) %]
210             [% IF ( phonepro ) %]<li><span class="label">Organization phone: </span>[% phonepro %]</li>[% END %]
211             [% IF ( emailpro ) %]<li><span class="label">Organization email: </span>[% emailpro %]</li>[% END %]
212         [% ELSE %]
213             [% IF ( phone ) %]<li><span class="label">Primary phone: </span>[% phone %]</li>[% END %]
214             [% IF ( phonepro ) %]<li><span class="label">Secondary phone: </span>[% phonepro %]</li>[% END %]
215             [% IF ( mobile ) %]<li><span class="label">Other phone: </span>[% mobile %]</li>[% END %]
216         [% END %]
217
218     [% IF ( P ) %]
219         [% IF ( phone ) %]<li><span class="label">Primary phone: </span>[% phone %]</li>[% END %]
220         [% IF ( mobile ) %]<li><span class="label">Other phone: </span>[% mobile %]</li>[% END %]
221     [% END %]           
222         [% IF ( fax ) %]<li><span class="label">Fax: </span>[% fax %]</li>[% END %]
223     [% UNLESS ( I ) %]
224         [% IF ( email ) %]<li><span class="label">Primary email:</span><a href="mailto:[% email %]">[% email %]</a></li>[% END %]
225         [% IF ( emailpro ) %]<li><span class="label">Secondary email: </span><a href="mailto:[% emailpro %]">[% emailpro %]</a></li>[% END %]
226     [% END %]
227     [% IF ( initials ) %]<li><span class="label">Initials: </span>[% initials %]</li>[% END %]
228     [% IF ( dateofbirth ) %]<li><span class="label">Date of birth:</span>[% dateofbirth %]</li>[% END %]
229     [% IF ( sex ) %]<li><span class="label">Gender:</span>
230     [% IF ( sex == 'F' ) %]Female[% ELSIF ( sex == 'M' ) %]Male[% ELSE %][% sex %][% END %]
231     </li>[% END %][% END %]
232     [% IF ( isguarantee ) %]
233         [% IF ( guaranteeloop ) %]
234             <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>
235         [% END %]
236     [% ELSE %]
237         [% IF ( guarantorborrowernumber ) %]
238             <li><span class="label">Guarantor:</span><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantorborrowernumber %]">[% guarantorsurname %][%IF ( guarantorfirstname ) %], [% guarantorfirstname %] [% END %]</a></li>
239         [% END %]
240     [% END %]
241 </ol>
242 </div>
243       <div class="action">
244         [% IF ( guarantorborrowernumber ) %]
245         <a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=1&amp;guarantorid=[% guarantorborrowernumber %]">Edit</a>
246         [% ELSE %]
247         <a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=1">Edit</a>
248         [% END %]</div>
249
250 </div>
251
252 <!-- Begin Upload Patron Image Section -->
253
254 <div id="manage-patron-image">
255 [% IF ( patronimages ) %]
256     [% IF ( CAN_user_tools_batch_upload_patron_images ) %]
257         <form method="post" action="/cgi-bin/koha/tools/picture-upload.pl" enctype="multipart/form-data">
258             <fieldset class="brief">
259             [% IF ( picture ) %]
260                 <legend>Manage Patron Image</legend>
261                 <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.
262             [% ELSE %]
263                 <legend>Upload Patron Image</legend>
264                 <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.
265             [% END %]
266                     <br />Only PNG, GIF, JPEG, XPM formats are supported.
267                 </div>
268                 <input type="hidden" id="image" name="filetype" value="image" />
269                 <input type="hidden" id="cardnumber" name="cardnumber" value="[% cardnumber %]" />
270                 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
271                 <ol>
272                     <li>
273                        <label for="uploadfile">Select the file to upload: </label><input type="file" id="uploadfile" name="uploadfile" />
274                     </li>
275                 </ol>
276                 <fieldset class="action">
277                     <input type="submit" value="Upload" class="submit" />
278                     <input name="op" type="hidden" value="Upload" />
279                     [% IF ( picture ) %]<a id="delpicture" href="/cgi-bin/koha/tools/picture-upload.pl?op=Delete&amp;borrowernumber=[% borrowernumber %]" class="delete">Delete</a>[% END %]
280                 </fieldset>
281             </fieldset>
282         </form>
283     [% END %]
284 [% END %]
285 </div>
286
287 <!-- End Upload Patron Image Section -->
288
289 [% IF ( ExtendedPatronAttributes ) %]
290 [% UNLESS ( no_patron_attribute_types ) %]
291 <div id="patron-extended-attributes" style="padding-top: 1em;">
292 <h3>Additional attributes and identifiers</h3>
293 [% FOREACH attribute IN attributes_loop %]
294     [% IF attribute.class %]
295         <div id="aai_[% attribute.class %]" class="rows">
296     [% ELSE %]
297         <div id="aai" class="rows">
298     [% END %]
299         <h4>[% attribute.lib %]</h4>
300         <ol>
301         [% FOREACH item IN attribute.items %]
302             <li>
303                 <span class="label">[% item.description %]: </span>
304                 [% IF ( item.value_description ) %]
305                     [% item.value_description %]
306                 [% ELSE %]
307                     [% item.value| html_line_break %]
308                 [% END %]
309             </li>
310         [% END %]
311         </ol>
312     </div>
313 [% END %]
314 </div>
315 <div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=4">Edit</a></div>
316 [% END %]
317 [% END %]
318
319 [% IF ( EnhancedMessagingPreferences ) %]
320 <div id="patron-messaging-prefs" style="padding-top: 1em;">
321 <h3>Patron messaging preferences</h3>
322 [% INCLUDE 'messaging-preference-form.inc' %]
323  [% IF ( SMSSendDriver ) %]
324       <div class="rows"> <ol><li><span class="label">SMS number:</span>[% SMSnumber %]
325      </li></ol></div>
326  [% END %]
327 </div>
328 <div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=5">Edit</a></div>
329 [% END %]
330
331 </div>
332  <div class="yui-u"> 
333  <div id="patron-library-details">
334  <h3>Library use</h3>
335 <div class="rows"> 
336 <ol>
337     <li><span class="label">Card number: </span>[% cardnumber %]</li>
338         <li><span class="label">Borrowernumber: </span> [% borrowernumber %]</li>
339     <li><span class="label">Category: </span>[% description %] ([% categorycode %])</li>
340     <li><span class="label">Registration date: </span>[% dateenrolled %]</li>
341     
342     <li><span class="label">Expiration date: </span>
343     [% IF ( was_renewed ) %]
344             <strong class="reregistrinfo">[% dateexpiry %]</strong>
345     [% ELSE %]
346             [% dateexpiry %]
347     [% END %]
348     </li>
349     
350     <li><span class="label">Library: </span>[% branchname %]</li>
351
352     [% IF ( OPACPrivacy ) %]<li><span class="label">Privacy Pref:</span>
353          [% IF ( privacy0 ) %]Forever[% END %]
354          [% IF ( privacy1 ) %]Default[% END %]
355          [% IF ( privacy2 ) %]Never[% END %]
356     </li>[% END %]
357     [% IF ( sort1 ) %]<li><span class="label">Sort field 1:</span>[% lib1 %]</li>[% END %]
358     [% IF ( sort2 ) %]<li><span class="label">Sort field 2:</span>[% lib2 %]</li>[% END %]
359     <li><span class="label">Username: </span>[% userid %]</li>
360     <li><span class="label">Password: </span>
361     [% IF ( password ) %]
362         *******
363     [% ELSE %]
364         <span class="problem"><a href="/cgi-bin/koha/members/member-password.pl?member=[% borrowernumber %]">Undefined</a></span>
365     [% END %] 
366     </li>
367     [% IF ( borrowernotes ) %]<li><span class="label">Circulation note: </span>[% borrowernotes %]</li>[% END %]
368     [% IF ( opacnote ) %]<li><span class="label">OPAC note:</span>[% opacnote %]</li>[% END %]
369     [% IF Koha.Preference( 'NorwegianPatronDBEnable' ) == 1 %]
370         [% IF ( sync == 1 ) %]
371             <li><span class="label">Activate sync: </span>Yes</li>
372             [% IF ( syncstatus ) %]<li><span class="label">Sync status: </span>[% syncstatus %]</li>[% END %]
373             [% IF ( lastsync ) %]<li><span class="label">Last sync: </span>[% lastsync | $KohaDates %]</li>[% END %]
374         [% ELSE %]
375             <li><span class="label">Activate sync: </span>No</li>
376         [% END %]
377     [% END %]
378         </ol>
379         </div>
380  </div>
381     <div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=3">Edit</a></div>
382  
383     [% UNLESS ( I ) %]
384  <div id="patron-alternate-address" style="padding-top: 1em;">
385     <h3>Alternate address</h3>
386     <div class="rows">  <ol><li><span class="label">Address: </span>[% B_address %]</li>
387       <li><span class="label">Address 2: </span>[% B_address2 %]</li>
388       <li><span class="label">City: </span>[% B_city %]</li>
389       [% IF ( B_state ) %]<li><span class="label">State: </span>[% B_state %]</li>[% END %]
390       <li><span class="label">Zip/Postal code: </span>[% B_zipcode %]</li>
391       [% IF ( B_country ) %]<li><span class="label">Country: </span>[% B_country %]</li>[% END %]
392       [% IF ( B_phone ) %]<li><span class="label">Phone: </span>[% B_phone %]</li>[% END %]
393       [% IF ( B_email ) %]<li><span class="label">Email: </span><a href="mailto:[% B_email %]">[% B_email %]</a></li>[% END %]
394       [% IF ( contactnote ) %]<li><span class="label">Contact note: </span> [% contactnote %]</li>[% END %]
395       </ol>
396     </div>
397 </div>
398 <div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=6">Edit</a></div>
399     [% END %]
400
401  <div id="patron-alternative-contact" style="padding-top: 1em;">
402  <h3>Alternative contact</h3>
403    <div class="rows"> <ol><li><span class="label">Surname: </span>[% altcontactsurname %]</li>
404     <li><span class="label">First name: </span>[% altcontactfirstname %]</li>    
405     <li><span class="label">Address: </span>[% altcontactaddress1 %]</li>
406     <li><span class="label">Address 2: </span>[% altcontactaddress2 %]</li>
407         <li><span class="label">City: </span>[% altcontactaddress3 %]</li>
408     [% IF ( altcontactstate ) %]<li><span class="label">State: </span>[% altcontactstate %]</li>[% END %]
409     <li><span class="label">Zip/Postal code: </span>[% altcontactzipcode %]</li>
410         [% IF ( altcontactcountry ) %]<li><span class="label">Country: </span>[% altcontactcountry %]</li>[% END %]
411     [% IF ( altcontactphone ) %]<li><span class="label">Phone: </span>[% altcontactphone %]</li>[% END %]
412     </ol></div>
413 </div>
414 <div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=[% borrowernumber %]&amp;step=2">Edit</a></div>
415
416 </div>
417 </div>
418
419 <div id="finesholdsissues" class="toptabs">
420     <ul>
421         <li><a href="#checkouts">[% issuecount %] Checkout(s)</a></li>
422         [% IF relatives_issues_count %]
423             <li><a href="#relatives-issues" id="relatives-issues-tab">Relatives' checkouts</a></li>
424         [% END %]
425         <li><a href="#finesandcharges">Fines &amp; Charges</a></li>
426         <li>
427             [% IF ( holds_count ) %]
428                 <a href="#reserves" id="holds-tab">[% holds_count %] Hold(s)</a>
429             [% ELSE %]
430                 <a href="#reserves" id="holds-tab">0 Holds</a>
431             [% END %]
432         </li>
433         <li><a id="debarments-tab-link" href="#reldebarments">[% debarments.size %] Restrictions</a></li>
434     </ul>
435
436 [% INCLUDE "checkouts-table.inc" %]
437
438 [% IF ( relatives_issues_count ) %]
439     <div id="relatives-issues">
440         <table id="relatives-issues-table" style="width: 100% !Important;">
441             <thead>
442                 <tr>
443                     <th scope="col">Due date hidden not formatted</th>
444                     <th scope="col">Due date</th>
445                     <th scope="col">Title</th>
446                     <th scope="col">Item type</th>
447                     <th scope="col">Location</th>
448                     <th scope="col">Checked out on</th>
449                     <th scope="col">Checked out from</th>
450                     <th scope="col">Call no</th>
451                     <th scope="col">Charge</th>
452                     <th scope="col">Fine</th>
453                     <th scope="col">Price</th>
454                     <th scope="col">Patron</th>
455                 </tr>
456             </thead>
457         </table>
458     </div>
459 [% END %]
460
461 <div id="finesandcharges">
462     [% IF ( totaldue_raw ) %]
463         <p>Total due: [% totaldue %]</p>
464     [% ELSE %]
465         <p>No outstanding charges</p>
466     [% END %]
467 </div>
468
469 [% INCLUDE borrower_debarments.inc %]
470
471 <div id="reserves">
472 [% IF ( holds_count ) %]
473     <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
474         <input type="hidden" name="from" value="circ" />
475         <table id="holds-table" style="width: 100% !Important;">
476             <thead>
477                 <tr>
478                     <th>Hold date</th>
479                     <th>Title</th>
480                     <th>Call number</th>
481                     <th>Barcode</th>
482                     <th>Pickup at</th>
483                     <th>Expiration</th>
484                     <th>Priority</th>
485                     <th>Delete?</th>
486                 </tr>
487             </thead>
488         </table>
489
490         <fieldset class="action">
491             <input type="submit" class="cancel" name="submit" value="Cancel marked holds" />
492         </fieldset>
493     </form>
494
495     [% IF SuspendHoldsIntranet %]
496     <fieldset class="action">
497         <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
498             <input type="hidden" name="from" value="borrower" />
499             <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
500             <input type="submit" value="Suspend all holds" />
501
502             [% IF AutoResumeSuspendedHolds %]
503             <label for="suspend_until">until</label>
504             <input type="text" size="10" id="suspend_until" name="suspend_until"/>
505             <span class="hint">Specify date on which to resume [% INCLUDE 'date-format.inc' %]: </span>
506             [% END %]
507         </form>
508     </fieldset>
509
510     <fieldset class="action">
511         <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
512             <input type="hidden" name="from" value="borrower" />
513             <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
514             <input type="hidden" name="suspend" value="0" />
515             <input type="submit" value="Resume all suspended holds" />
516         </form>
517     </fieldset>
518     [% END # IF SuspendHoldsIntranet %]
519
520     [% ELSE %]<p>Patron has nothing on hold.</p>[% END %]
521         </div>
522
523 </div>
524 [% END %] <!-- unknowuser -->
525
526
527 </div>
528 </div>
529 <div class="yui-b">
530 [% INCLUDE 'circ-menu.inc' %]
531 </div>
532 </div>
533 [% INCLUDE 'intranet-bottom.inc' %]