View | Details | Raw Unified | Return to bug 7825
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt (-6 / +5 lines)
Lines 31-37 Link Here
31
    $(".copiesrow").hide();
31
    $(".copiesrow").hide();
32
32
33
    $("#place_on_hdr").show();
33
    $("#place_on_hdr").show();
34
    [% IF OPACItemHolds == 'yes' %]
34
    [% IF OPACItemHolds == '1' %]
35
        $(".place_on_type").show();
35
        $(".place_on_type").show();
36
    [% END %]
36
    [% END %]
37
37
Lines 254-260 Link Here
254
        <th>Hold starts on date</th>
254
        <th>Hold starts on date</th>
255
		  [% END %]
255
		  [% END %]
256
        <th>Hold not needed after</th>
256
        <th>Hold not needed after</th>
257
                  [% IF OPACItemHolds == 'yes' %]
257
                  [% IF OPACItemHolds == '1' %]
258
                    <th id="place_on_hdr" style="display:none">Place On</th>
258
                    <th id="place_on_hdr" style="display:none">Place On</th>
259
                  [% END %]
259
                  [% END %]
260
                  [% UNLESS ( singleBranchMode ) %]
260
                  [% UNLESS ( singleBranchMode ) %]
Lines 342-348 Link Here
342
342
343
                    [% IF ( bibitemloo.holdable ) %]
343
                    [% IF ( bibitemloo.holdable ) %]
344
		    <!-- HOLDABLE -->
344
		    <!-- HOLDABLE -->
345
		        [% IF OPACItemHolds == 'yes' or OPACItemHolds == 'force' %]
345
		        [% IF OPACItemHolds == '1' or OPACItemHolds == 'force' %]
346
		        <!-- ITEM HOLDS -->
346
		        <!-- ITEM HOLDS -->
347
                                          <td class="place_on_type" style="display:none">
347
                                          <td class="place_on_type" style="display:none">
348
                                            <ul>
348
                                            <ul>
Lines 351-357 Link Here
351
                                                           id="reqany_[% bibitemloo.biblionumber %]"
351
                                                           id="reqany_[% bibitemloo.biblionumber %]"
352
                                                           class="selectany"
352
                                                           class="selectany"
353
                                                           value="Any"
353
                                                           value="Any"
354
                                                           [% IF OPACItemHolds == "yes" %]checked="checked"[% END %]
354
                                                           [% IF OPACItemHolds == "1" %]checked="checked"[% END %]
355
                                                    />
355
                                                    />
356
                                                    <label for="reqany_[% bibitemloo.biblionumber %]">Next available copy</label>
356
                                                    <label for="reqany_[% bibitemloo.biblionumber %]">Next available copy</label>
357
                                                </li>
357
                                                </li>
Lines 407-413 Link Here
407
                    [% END %]
407
                    [% END %]
408
                  </tr>
408
                  </tr>
409
409
410
                  [% IF OPACItemHolds == 'yes' || OPACItemHolds == 'force' %]
410
                  [% IF OPACItemHolds == '1' || OPACItemHolds == 'force' %]
411
                  [% IF ( bibitemloo.holdable ) %]
411
                  [% IF ( bibitemloo.holdable ) %]
412
                    <tr class="copiesrow" id="copiesrow_[% bibitemloo.biblionumber %]">
412
                    <tr class="copiesrow" id="copiesrow_[% bibitemloo.biblionumber %]">
413
                      <td>&nbsp;</td>
413
                      <td>&nbsp;</td>
414
- 

Return to bug 7825