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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc (-1 / +1 lines)
Lines 49-55 Link Here
49
                        <input type="hidden" name="itemnumber" value="[% reserveloo.item.itemnumber | html %]" />
49
                        <input type="hidden" name="itemnumber" value="[% reserveloo.item.itemnumber | html %]" />
50
                        <input type="hidden" name="fbr" value="[% reserveloo.item.holdingbranch | html %]" />
50
                        <input type="hidden" name="fbr" value="[% reserveloo.item.holdingbranch | html %]" />
51
                        <input type="hidden" name="tbr" value="[% reserveloo.item.homebranch | html %]" />
51
                        <input type="hidden" name="tbr" value="[% reserveloo.item.homebranch | html %]" />
52
                        <input type="hidden" name="tab" value="holdswaiting">
52
                        <input type="hidden" name="tab" value="[% tab %]">
53
                        [% IF ( reserveloo.item.homebranch != reserveloo.item.holdingbranch ) %]
53
                        [% IF ( reserveloo.item.homebranch != reserveloo.item.holdingbranch ) %]
54
                            <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-remove"></i> Cancel hold and return to: [% Branches.GetName( reserveloo.item.homebranch ) | html %]</button>
54
                            <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-remove"></i> Cancel hold and return to: [% Branches.GetName( reserveloo.item.homebranch ) | html %]</button>
55
                        [% ELSE %]
55
                        [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt (-3 / +2 lines)
Lines 73-79 Link Here
73
            </ul>
73
            </ul>
74
            <div id="holdswaiting">
74
            <div id="holdswaiting">
75
        [% IF ( reserveloop ) %]
75
        [% IF ( reserveloop ) %]
76
            [% INCLUDE waiting_holds.inc table_name='holdst' reserveloop=reserveloop %]
76
            [% INCLUDE waiting_holds.inc table_name='holdst' reserveloop=reserveloop tab='holdwaiting' %]
77
        [% ELSE %]
77
        [% ELSE %]
78
            <div class="dialog message">No holds found.</div>
78
            <div class="dialog message">No holds found.</div>
79
        [% END %]
79
        [% END %]
Lines 96-102 Link Here
96
                        Only items that need not be transferred will be cancelled (TransferWhenCancelAllWaitingHolds syspref)
96
                        Only items that need not be transferred will be cancelled (TransferWhenCancelAllWaitingHolds syspref)
97
                   [% END %]
97
                   [% END %]
98
                </span>
98
                </span>
99
               [% INCLUDE waiting_holds.inc table_name='holdso' reserveloop=overloop %]
99
               [% INCLUDE waiting_holds.inc table_name='holdso' reserveloop=overloop tab='holdsover' %]
100
            [% ELSE %]
100
            [% ELSE %]
101
                <div class="dialog message">No holds found.</div>
101
                <div class="dialog message">No holds found.</div>
102
            [% END %]
102
            [% END %]
103
- 

Return to bug 23192