Revised for biblibre/3.2_community: Fix for Bug 3780, various OPAC pages have no...
[koha.git] / koha-tmpl / opac-tmpl / prog / en / modules / opac-reserve.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" --><!-- TMPL_VAR NAME="LibraryNameTitle" DEFAULT="Koha Online" --> Catalog &rsaquo;  Placing hold <!-- TMPL_VAR NAME="title" escape="html" --> for <!-- TMPL_LOOP NAME="USER_INFO" --><!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --><!-- /TMPL_LOOP -->
2 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
3 <!-- TMPL_INCLUDE NAME="calendar.inc" -->
4 <script type="text/javascript">
5 // <![CDATA[
6  var MSG_NO_COPY_SELECTED = _("Expecting a specific copy selection.");
7
8  function prefixOf (s, tok) {
9      var index = s.indexOf(tok);
10      return s.substring(0, index);
11  }
12  function suffixOf (s, tok) {
13      var index = s.indexOf(tok);
14      return s.substring(index + 1);
15  }
16
17  $(document).ready(function() {
18     var copiesRowId = null;
19     var wasSpecific = false;
20     var lastCopiesRowId = null;
21         $(".checkitem").parent().click(function(e){
22                 if(e.target.tagName.toLowerCase() == 'td'){
23            $(this).find("input.checkitem").each( function() {
24                $(this).attr('checked', !$(this).attr('checked'));
25                         });
26                 }
27         });
28     // Hides all 'specific copy' table rows on load.
29     $(".copiesrow").hide();
30
31     $("#place_on_hdr").show();
32     $(".place_on_type").show();
33
34     // Replace non-JS single-selection with multi-selection capability.
35     $(".reserve_mode").val("multi");
36     $(".confirm_nonjs").remove();
37     $(".confirmjs_hold").each(function(){
38         var bib = $(this).attr("title");
39         var html = "<input type =\"checkbox\" class=\"confirmjs\" checked=\"checked\"";
40         html += "value=\"" + bib + "\"/>";
41         $(this).html(html);
42     });
43     $(".confirmjs_nohold").each(function(){
44         var bib = $(this).attr("title");
45         var html = "<input type =\"checkbox\" class=\"confirmjs\" disabled=\"disabled\"";
46         html += "value=\"" + bib + "\"/>";
47         $(this).html(html);
48     });
49
50     // Make sure a specific item was selected where specified
51     // before moving on to a new item.
52     function changeSelection (newCopiesRowId, isSpecific) {
53         if (copiesRowId && ((copiesRowId != newCopiesRowId) || (wasSpecific != isSpecific))) {
54             var biblioNum = suffixOf(copiesRowId, "_");
55             
56             // If the 'specific copy' radio button was checked
57               if (wasSpecific && (copiesRowId != newCopiesRowId)) {
58                 // Find the selected copy
59                 var item = $(".checkitem_" + biblioNum + ":checked");
60                 if ($(item).size() == 0) {
61                     alert(MSG_NO_COPY_SELECTED);
62                     return false;
63                 }
64             }
65         }
66         copiesRowId = newCopiesRowId;
67         wasSpecific = isSpecific;
68         return true;
69     }
70
71     // When 'specific copy' radio button is clicked
72     $(".selectspecific").click(function() {
73
74         // Make sure all other specific copy table rows are hidden
75         biblioNum = suffixOf($(this).attr("id"), "_");
76         newCopiesRowId = "#copiesrow_" + biblioNum;
77
78         if (!changeSelection(newCopiesRowId, true)) {
79             return false;
80         }
81         $(".copiesrow:not(" + newCopiesRowId + ")").hide();
82         
83         // Show the specific copy table for this radio button.
84         $(newCopiesRowId).show();
85     });
86
87
88     // When 'first available' radion button is clicked
89     $(".selectany").click(function() {
90         // Make sure all other specific copy table rows are hidden
91         biblioNum = suffixOf($(this).attr("id"), "_");
92         newCopiesRowId = "#copiesrow_" + biblioNum;
93
94         if (!changeSelection(newCopiesRowId, false)) {
95             return false;
96         }
97
98         // Hide the copies table row
99         $(".copiesrow").hide();
100     });
101
102     // When 'Place Hold' button is clicked
103     $(".placehold").click(function(){
104         var biblionumbers = "";
105         var selections = "";
106
107         if ($(".confirmjs:checked").size() == 0) {
108             alert(MSG_NO_RECORD_SELECTED);
109             return false;
110         }
111
112         // Find the items with the 'Hold' box checked
113         var badBib = null;
114         $(".confirmjs:checked").each(function() {
115             var biblioNum = $(this).val();
116             biblionumbers += biblioNum + "/";
117             selections += biblioNum + "/";
118
119             // If the 'specific copy' radio button is checked
120             if ($("#reqspecific_" + biblioNum + ":checked").size() > 0) {
121                 // Find the selected copy
122                 var item = $(".checkitem_" + biblioNum + ":checked");
123                 if ($(item).size() == 0) {
124                     badBib = biblioNum;
125                     return false;
126                 } else {
127                   selections += $(item).val();
128                 }
129             }
130             selections += "/";
131
132             // Add the pickup location
133             var branchSel = $("#branch_" + biblioNum);
134             if (branchSel.size() > 0) {
135                 selections += $(branchSel).val();
136             }
137             selections += "/";
138             return true;
139         });
140
141         if (badBib) {
142             alert(MSG_NO_COPY_SELECTED);
143             return false;
144         }
145
146         $("#selections").val(selections);
147         $("#biblionumbers").val(biblionumbers);
148
149         return true;
150     });
151
152  });
153 // ]]>
154 </script>
155 </head>
156
157 <body id="opac-holds">
158   <div id="doc3" class="yui-t7">
159     <!--TMPL_INCLUDE NAME="masthead.inc" -->
160     <div id="bd">
161           <div id="yui-g">
162         <div id="holds" class="container">
163       
164           <!-- TMPL_IF NAME="message" -->
165             <!-- TMPL_IF NAME="GNA" -->
166               <div class="dialog alert">
167                 <strong>Sorry</strong>, you cannot place holds because the library doesn't have up-to-date <a href="/cgi-bin/koha/opac-userdetails.pl">contact information</a> on file.
168               </div>
169               <div class="dialog alert">Please contact your librarian, or use the <a href="/cgi-bin/koha/opac-userupdate.pl">online update form</a> to submit current information (<em>Please note:</em> there may be a delay in restoring your account if you submit online)
170               </div>
171             <!-- /TMPL_IF -->
172             <!-- TMPL_IF NAME="lost" -->
173               <div class="dialog alert">
174                 <strong>Sorry</strong>, you cannot place holds because your library card has been marked as lost or stolen.
175               </div>
176               <div class="dialog alert">If this is an error, please take your card to the circulation desk at your local library and the error will be corrected.
177               </div>
178             <!-- /TMPL_IF -->
179             <!-- TMPL_IF NAME="debarred" -->
180               <div class="dialog alert">
181                 <strong>Sorry</strong>, you cannot place holds because your account has been frozen.
182               </div>
183               <div class="dialog alert">Usually the reason for freezing an account is old overdues or damage fees.   If <a href="/cgi-bin/koha/opac-user.pl">your account page</a> shows your account to be clear, please consult a librarian.
184               </div>
185             <!-- /TMPL_IF -->
186             <!-- TMPL_IF NAME="too_much_oweing" -->
187               <div class="dialog alert">
188                 Sorry, you cannot place holds because you owe <!-- TMPL_VAR NAME="too_much_oweing" -->.
189               </div>
190             <!-- /TMPL_IF -->
191             <!-- TMPL_IF NAME="too_many_reserves" -->
192               <div class="dialog alert">Sorry, you cannot place more than <!-- TMPL_VAR NAME="too_many_reserves" --> holds.
193               </div>
194             <!-- /TMPL_IF -->
195             <!-- TMPL_IF NAME="bad_biblionumber" -->
196               <div class="dialog alert">ERROR: No biblio record found for biblionumber <!-- TMPL_VAR NAME="bad_biblionumber" -->.</div>
197             <!-- /TMPL_IF -->
198             <!-- TMPL_IF NAME="no_items_selected" -->
199               <div class="dialog alert">
200                 You must select at least one item.
201               </div>
202             <!-- /TMPL_IF -->
203             <!-- TMPL_IF NAME="no_branch_selected" -->
204               <div class="dialog alert">
205                 You must select a library for pickup.
206               </div>
207             <!-- /TMPL_IF -->
208             <!-- TMPL_IF NAME="no_biblionumber" -->
209               <div class="dialog alert">ERROR: No biblionumber received.</div>
210             <!-- /TMPL_IF -->
211             <!-- TMPL_IF NAME="bad_data" -->
212               <div class="dialog alert">ERROR: Internal error: incomplete hold request.</div>
213             <!-- /TMPL_IF -->
214             <!-- TMPL_IF NAME="none_available" -->
215               <div class="dialog alert"><strong>Sorry</strong>, none of these items can be placed on hold.
216               </div>
217             <!-- /TMPL_IF -->
218           <!-- /TMPL_IF --><!-- NAME="message" -->
219
220           <!-- TMPL_UNLESS NAME="message" -->
221               <h3>Confirm holds for:
222                 <!-- TMPL_LOOP NAME="USER_INFO" -->
223                   <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)
224                 <!-- /TMPL_LOOP -->
225               </h3>
226
227             <form action="/cgi-bin/koha/opac-reserve.pl" method="post">
228             <input type="hidden" name="place_reserve" value="1"/>
229
230             <!-- These values are set dynamically by js -->
231             <input type="hidden" name="biblionumbers" id="biblionumbers"/>
232             <input type="hidden" name="selecteditems" id="selections"/>
233             <div id="bigloop">
234               <table id="bibitemloop">
235                 <tr>
236                   <th colspan="2">Hold</th>
237                   <th>Title</th>
238                   <!-- TMPL_UNLESS NAME="item-level_itypes" -->
239                     <th>Item Type</th>
240                   <!-- /TMPL_UNLESS -->
241                   <th>Priority</th>
242                   <!-- TMPL_IF NAME="reserve_in_future" -->
243                   <th>Hold Starts on Date</th>
244                   <!-- /TMPL_IF -->
245                   <!-- TMPL_IF NAME="OPACItemHolds" -->
246                     <th id="place_on_hdr" style="display:none">Place On</th>
247                   <!-- /TMPL_IF -->
248                   <!-- TMPL_UNLESS NAME="singleBranchMode" -->
249                     <th>Pickup Location</th>
250                   <!-- /TMPL_UNLESS -->
251                 </tr>
252
253                 <!-- TMPL_LOOP name="bibitemloop" -->
254                   <tr>
255                       <!-- TMPL_IF NAME="holdable" -->
256                                           <td colspan="2">
257                       <input class="reserve_mode" name="reserve_mode" type="hidden" value="single"/>
258                       <input class="single_bib" name="single_bib" type="hidden" value="<!-- TMPL_VAR NAME="biblionumber" -->"/>
259                         <span class="confirmjs_hold" title="<!-- TMPL_VAR NAME="biblionumber" -->"></span>
260                         <span class="confirm_nonjs">
261                           <input type="radio" class="confirmbox checkitem <!-- TMPL_VAR NAME="checkitem_bib" -->"
262                                  name="<!-- TMPL_VAR NAME="checkitem_bib" -->" checked="checked"
263                                  id="<!-- TMPL_VAR NAME="checkitem_bib" -->"
264                                  value="any" />
265                           <label class="confirm_label" for="<!-- TMPL_VAR NAME="checkitem_bib" -->">Next available copy</label>
266                         </span>
267                                         </td>
268                       <!-- TMPL_ELSE -->
269                                           <td>
270                       <input class="reserve_mode" name="reserve_mode" type="hidden" value="single"/>
271                       <input class="single_bib" name="single_bib" type="hidden" value="<!-- TMPL_VAR NAME="biblionumber" -->"/>
272                         <span class="confirmjs_nohold" title="<!-- TMPL_VAR NAME="biblionumber" -->"></span>
273                         <span class="confirm_nonjs">
274                           <input type="radio" class="confirmbox checkitem <!-- TMPL_VAR NAME="checkitem_bib" -->"
275                                  name="<!-- TMPL_VAR NAME="checkitem_bib" -->" disabled="disabled"
276                                  id="<!-- TMPL_VAR NAME="checkitem_bib" -->"
277                                  value="any" />
278                         </span>
279                                         </td><td>
280                         <!-- TMPL_IF NAME="already_reserved" -->
281                           <div class="bibmessage">You have already requested this title.</div>
282                         <!-- /TMPL_IF -->
283                         <!-- TMPL_UNLESS NAME="bib_available" -->
284                           <div class="bibmessage">No available items.</div>
285                         <!-- TMPL_ELSE -->
286                           <div class="bibmessage">This title cannot be requested.</div>
287                         <!-- /TMPL_UNLESS -->
288                     </td>
289                       <!-- /TMPL_IF -->
290                     <td>
291                       <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" escape="html" --><!-- TMPL_IF NAME="subtitle" --> <!-- TMPL_LOOP NAME="subtitle" --><!--TMPL VAR Name="subfield"--><!--/TMPL_LOOP--><!-- /TMPL_IF --></a>
292                       <!-- TMPL_IF NAME="author" -->,  by <!-- TMPL_VAR NAME="author" --><!-- /TMPL_IF -->
293                     </td>
294                     <!-- TMPL_UNLESS NAME="item-level_itypes" -->
295                       <td>
296                         <!-- TMPL_IF NAME="imageurl" --><img src="<!-- TMPL_VAR NAME="imageurl" -->" alt="" /><!-- /TMPL_IF -->
297                                                 <!-- TMPL_VAR NAME="description" -->
298                       </td>
299                     <!-- /TMPL_UNLESS -->
300                     <td><!-- TMPL_VAR name="rank" --> out of <!-- TMPL_VAR NAME="reservecount" --></td>
301                     <!-- TMPL_IF NAME="reserve_in_future" -->
302                     <td>
303                         <input name="reserve_date_<!-- TMPL_VAR NAME="biblionumber" -->" id="reserve_date_<!-- TMPL_VAR NAME="biblionumber" -->" size="10">
304                         <!-- <img src="<!-- TMPL_VAR NAME="themelang" -->/lib/calendar/cal.gif" alt="Show Calendar" border="0" id="CalendarReserveDate<!-- TMPL_VAR NAME="biblionumber" -->" style="cursor: pointer;" /> -->
305                         <script language="JavaScript" type="text/javascript">
306                         //<![CDATA[
307                         $("#reserve_date_<!-- TMPL_VAR NAME="biblionumber" -->").attr( 'readonly', 'readonly' );
308
309                         var cal_img = document.createElement('img');
310                         cal_img.src = "<!-- TMPL_VAR NAME="themelang" -->/lib/calendar/cal.gif";
311                         cal_img.alt = "Show Calendar";
312                         cal_img.border = "0";
313                         cal_img.id = "CalendarReserveDate<!-- TMPL_VAR NAME="biblionumber" -->";
314                         cal_img.style.cursor = "pointer";
315                         document.getElementById("reserve_date_<!-- TMPL_VAR NAME="biblionumber" -->").parentNode.appendChild( cal_img );
316
317                         function validate<!-- TMPL_VAR NAME="biblionumber" -->(date) {
318                             var today = new Date();
319                 if ( (date > today) ||
320                         ( date.getDate() == today.getDate() &&
321                           date.getMonth() == today.getMonth() &&
322                           date.getFullYear() == today.getFullYear() ) ) {
323                     return false;
324                 } else {
325                     return true;
326                 }
327                         };
328                         Calendar.setup(
329                         {
330                                 inputField : "reserve_date_<!-- TMPL_VAR NAME="biblionumber" -->",
331                                 ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
332                                 button : "CalendarReserveDate<!-- TMPL_VAR NAME="biblionumber" -->",
333                                 disableFunc : validate<!-- TMPL_VAR NAME="biblionumber" -->,
334                                 dateStatusFunc : validate<!-- TMPL_VAR NAME="biblionumber" -->,
335                         }
336                         );
337                         //]]>
338                         </script>
339                     </td>
340                     <!-- /TMPL_IF -->
341                     <!-- TMPL_IF NAME="OPACItemHolds" -->
342                       <td class="place_on_type" style="display:none">
343                         <table>
344                           <tr>
345                             <td>
346                               <!-- TMPL_UNLESS NAME="holdable" -->
347                                 <input type="radio" name="reqtype_<!-- TMPL_VAR NAME="biblionumber" -->"
348                                        id="reqany_<!-- TMPL_VAR NAME="biblionumber" -->"
349                                        class="selectany"
350                                        value="Any"
351                                        disabled="disabled"
352                                 />
353                               <!-- TMPL_ELSE -->
354                                 <input type="radio" name="reqtype_<!-- TMPL_VAR NAME="biblionumber" -->"
355                                        id="reqany_<!-- TMPL_VAR NAME="biblionumber" -->"
356                                        class="selectany"
357                                        value="Any"
358                                        checked="checked"
359                                 />
360                               <!-- /TMPL_UNLESS -->
361                               <label for="reqany_<!-- TMPL_VAR NAME="biblionumber" -->">Next available copy</label>
362                             </td>
363                           </tr>
364                           <tr>
365                             <td>
366                               <!-- TMPL_UNLESS NAME="holdable" -->
367                                 <input type="radio" name="reqtype_<!-- TMPL_VAR NAME="biblionumber" -->"
368                                        id="reqspecific_<!-- TMPL_VAR NAME="biblionumber" -->"
369                                        class="selectspecific"
370                                        disabled="disabled"
371                                        value="Specific"
372                                 />
373                               <!-- TMPL_ELSE -->
374                                 <input type="radio" name="reqtype_<!-- TMPL_VAR NAME="biblionumber" -->"
375                                        id="reqspecific_<!-- TMPL_VAR NAME="biblionumber" -->"
376                                        class="selectspecific"
377                                        value="Specific"
378                                 />
379                               <!-- /TMPL_UNLESS -->
380                               <label for="reqspecific_<!-- TMPL_VAR NAME="biblionumber"-->">A specific copy</label>
381                             </td>
382                           </tr>
383                         </table>
384                       </td>
385                     <!-- /TMPL_IF -->
386
387                     <!-- TMPL_UNLESS NAME="singleBranchMode" -->
388                       <td>
389                         <select name="branch" id="branch_<!-- TMPL_VAR NAME="biblionumber" -->"
390                           <!-- TMPL_UNLESS NAME="holdable" -->disabled="disabled"<!-- /TMPL_UNLESS --> >
391                           <!-- TMPL_LOOP NAME="branchChoicesLoop" -->
392                             <!-- TMPL_IF name="selected" -->
393                               <option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
394                             <!-- TMPL_ELSE -->
395                               <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
396                             <!-- /TMPL_IF -->
397                           <!-- /TMPL_LOOP -->
398                         </select>
399                       </td>
400                     <!-- /TMPL_UNLESS -->
401                   </tr>
402
403                   <!-- TMPL_IF NAME="OPACItemHolds" -->
404                   <!-- TMPL_IF NAME="bib_available" -->
405                     <tr class="copiesrow" id="copiesrow_<!-- TMPL_VAR NAME="biblionumber"-->">
406                       <td colspan="1">
407                       </td>
408                       <td colspan="<!-- TMPL_VAR NAME="itemtable_colspan" -->">
409                         <table>
410                           <caption>Select a specific copy:</caption>
411                           <tr>
412                             <th>Copy</th>
413                             <!-- TMPL_IF NAME="item-level_itypes" -->
414                               <th>Item Type</th>
415                             <!-- /TMPL_IF -->
416                             <th>Barcode</th>
417                             <!-- TMPL_UNLESS NAME="singleBranchMode" -->
418                               <th>Home Library</th>
419                               <th>Last Location</th>
420                             <!-- /TMPL_UNLESS -->
421                             <th>Call Number</th>
422                             <!-- TMPL_IF NAME="itemdata_enumchron" -->
423                               <th>Vol Info</th>
424                             <!-- /TMPL_IF -->
425                             <th>Information</th>
426                           </tr>
427
428                           <!-- TMPL_LOOP name="itemLoop" -->
429                             <tr class="<!-- TMPL_VAR NAME="backgroundcolor" -->">
430                               <td>
431                                 <!-- TMPL_IF NAME="available" -->
432                                   <input type="radio" class="checkitem checkitem_<!-- TMPL_VAR NAME="biblionumber" -->" name="checkitem_<!-- TMPL_VAR NAME="biblionumber" -->"
433                                          value="<!-- TMPL_VAR NAME="itemnumber" -->" />
434                                 <!-- TMPL_ELSE -->
435                                   <input disabled="disabled" type="radio" class="checkitem" name="checkitem" value="<!-- TMPL_VAR NAME="itemnumber" -->" />
436                                   <img src="/opac-tmpl/<!-- TMPL_VAR NAME="theme" -->/famfamfam/silk/cross.png" alt="Cannot be put on hold" title="Cannot be put on hold" />
437                                 <!-- /TMPL_IF --> <!-- TMPL_IF NAME="copynumber" --><!-- TMPL_VAR NAME="copynumber" --><!-- /TMPL_IF -->
438                               </td>
439                               <!-- TMPL_IF NAME="item-level_itypes" -->
440                                 <td>
441                                   <!-- TMPL_IF NAME="imageurl" --><img src="<!-- TMPL_VAR NAME="imageurl" -->" alt="" /><!-- /TMPL_IF -->
442                                                                 <!-- TMPL_VAR NAME="description" -->
443                                 </td>
444                               <!-- /TMPL_IF -->
445                               <td><!-- TMPL_VAR NAME="barcode" --></td>
446                               <!-- TMPL_UNLESS NAME="singleBranchMode" -->
447                                 <td><!-- TMPL_VAR NAME="homeBranchName" --></td>
448                                 <td><!-- TMPL_VAR NAME="holdingBranchName" --></td>
449                               <!-- /TMPL_UNLESS -->
450                               <td><!-- TMPL_VAR NAME="callNumber" --></td>
451                               <!-- TMPL_IF NAME="itemdata_enumchron" --><!-- test -->
452                                 <td><!-- TMPL_VAR NAME="enumchron" --></td>
453                               <!-- /TMPL_IF -->
454                               <td>
455                                 <!-- TMPL_IF NAME="date_due" -->
456                                   <span class="checkedout">Due <!-- TMPL_VAR NAME="date_due" --></span>
457                                 <!-- TMPL_ELSIF NAME="transfertwhen" -->
458                                   <span class="intransit">In transit from <!-- TMPL_VAR NAME="transfertfrom" -->,
459                                     to <!-- TMPL_VAR NAME="transfertto" -->, since <!-- TMPL_VAR NAME="transfertwhen" --></span>
460                                 <!-- /TMPL_IF -->
461                                 <!-- TMPL_IF Name="message" -->
462                                   <span class="lost">Unavailable (lost or missing)</span>
463                                 <!-- /TMPL_IF -->
464                                 <!-- TMPL_IF Name="notforloan" -->
465                                   <span class="notforloan">Not for loan (<!-- TMPL_VAR NAME="notforloanvalue" -->)</span>
466                                 <!-- /TMPL_IF -->
467                                 <!-- TMPL_IF NAME="reservedate"-->
468                                   <span class="waiting"><!-- TMPL_IF NAME="waitingdate" -->Waiting<!-- TMPL_ELSE -->On hold<!-- /TMPL_IF --> for patron 
469                                     <!-- TMPL_IF NAME="waitingdate" -->at<!-- TMPL_ELSE -->expected at<!-- /TMPL_IF --> <!-- TMPL_VAR NAME="ExpectedAtLibrary" -->
470                                     since
471                                     <!-- TMPL_IF NAME="waitingdate" --><!-- TMPL_VAR NAME="waitingdate" --><!-- TMPL_ELSE --><!-- TMPL_IF name="reservedate" --><!-- TMPL_VAR NAME="reservedate" --><!-- /TMPL_IF --><!-- /TMPL_IF -->.
472                                   </span>
473                                 <!-- TMPL_ELSE -->
474                                   <span class="notonhold">Not on hold</span>
475                                 <!-- /TMPL_IF -->&nbsp;
476                               </td>
477                             </tr>
478                           <!-- /TMPL_LOOP -->
479                         </table>
480                       </td>
481                     </tr>
482                   <!-- /TMPL_IF --><!-- bib_available -->
483                   <!-- /TMPL_IF --><!-- OPACItemHolds -->
484                 <!-- /TMPL_LOOP -->
485               </table><!-- bibitemloop -->
486             </div><!-- bigloop -->
487
488             <!-- TMPL_IF NAME="none_available" -->
489             <input type="submit" disabled="disabled" value="Place Hold" />
490             <!-- TMPL_ELSE -->
491             <input type="submit" value="Place Hold" class="placehold" />
492             <!-- /TMPL_IF -->
493
494             </form>
495
496           <!-- /TMPL_UNLESS --><!-- message -->
497
498         </div><!-- holds -->
499       </div><!-- yui-g -->
500     </div><!-- bd    -->
501   </div><!-- doc3  -->
502
503 <div><!-- The following include seems to have an extra "/div" in it... -->
504 <!-- TMPL_INCLUDE NAME="opac-bottom.inc"-->