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 30-36 Link Here
30
    $(".copiesrow").hide();
30
    $(".copiesrow").hide();
31
31
32
    $("#place_on_hdr").show();
32
    $("#place_on_hdr").show();
33
    [% IF OPACItemHolds == 'yes' %]
33
    [% IF OPACItemHolds == '1' %]
34
        $(".place_on_type").show();
34
        $(".place_on_type").show();
35
    [% END %]
35
    [% END %]
36
36
Lines 253-259 Link Here
253
        <th>Hold starts on date</th>
253
        <th>Hold starts on date</th>
254
		  [% END %]
254
		  [% END %]
255
        <th>Hold not needed after</th>
255
        <th>Hold not needed after</th>
256
                  [% IF OPACItemHolds == 'yes' %]
256
                  [% IF OPACItemHolds == '1' %]
257
                    <th id="place_on_hdr" style="display:none">Place On</th>
257
                    <th id="place_on_hdr" style="display:none">Place On</th>
258
                  [% END %]
258
                  [% END %]
259
                  [% UNLESS ( singleBranchMode ) %]
259
                  [% UNLESS ( singleBranchMode ) %]
Lines 337-343 Link Here
337
337
338
                    [% IF ( bibitemloo.holdable ) %]
338
                    [% IF ( bibitemloo.holdable ) %]
339
		    <!-- HOLDABLE -->
339
		    <!-- HOLDABLE -->
340
		        [% IF OPACItemHolds == 'yes' or OPACItemHolds == 'force' %]
340
		        [% IF OPACItemHolds == '1' or OPACItemHolds == 'force' %]
341
		        <!-- ITEM HOLDS -->
341
		        <!-- ITEM HOLDS -->
342
                                          <td class="place_on_type" style="display:none">
342
                                          <td class="place_on_type" style="display:none">
343
                                            <ul>
343
                                            <ul>
Lines 346-352 Link Here
346
                                                           id="reqany_[% bibitemloo.biblionumber %]"
346
                                                           id="reqany_[% bibitemloo.biblionumber %]"
347
                                                           class="selectany"
347
                                                           class="selectany"
348
                                                           value="Any"
348
                                                           value="Any"
349
                                                           [% IF OPACItemHolds == "yes" %]checked="checked"[% END %]
349
                                                           [% IF OPACItemHolds == "1" %]checked="checked"[% END %]
350
                                                    />
350
                                                    />
351
                                                    <label for="reqany_[% bibitemloo.biblionumber %]">Next available copy</label>
351
                                                    <label for="reqany_[% bibitemloo.biblionumber %]">Next available copy</label>
352
                                                </li>
352
                                                </li>
Lines 402-408 Link Here
402
                    [% END %]
402
                    [% END %]
403
                  </tr>
403
                  </tr>
404
404
405
                  [% IF OPACItemHolds == 'yes' || OPACItemHolds == 'force' %]
405
                  [% IF OPACItemHolds == '1' || OPACItemHolds == 'force' %]
406
                  [% IF ( bibitemloo.holdable ) %]
406
                  [% IF ( bibitemloo.holdable ) %]
407
                    <tr class="copiesrow" id="copiesrow_[% bibitemloo.biblionumber %]">
407
                    <tr class="copiesrow" id="copiesrow_[% bibitemloo.biblionumber %]">
408
                      <td>&nbsp;</td>
408
                      <td>&nbsp;</td>
409
- 

Return to bug 7825