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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc (-1 / +1 lines)
Lines 7-13 Link Here
7
            <th class="title-string">Date hold placed</th>
7
            <th class="title-string">Date hold placed</th>
8
            <th class="anti-the">Title</th>
8
            <th class="anti-the">Title</th>
9
            <th>Patron</th>
9
            <th>Patron</th>
10
            <th>Home branch</th>
10
            <th>Home library</th>
11
            <th>Current location</th>
11
            <th>Current location</th>
12
            <th>Shelving location</th>
12
            <th>Shelving location</th>
13
            <th>Call number</th>
13
            <th>Call number</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt (-19 / +19 lines)
Lines 79-104 Link Here
79
        [% END %]
79
        [% END %]
80
        </div>
80
        </div>
81
        <div id="holdsover">
81
        <div id="holdsover">
82
                [% IF ( ReservesMaxPickUpDelay ) %]<p>Holds listed here have been awaiting pickup for more than [% ReservesMaxPickUpDelay | html %] days.</p>[% END %]
82
            [% IF ( ReservesMaxPickUpDelay ) %]<p>Holds listed here have been awaiting pickup for more than [% ReservesMaxPickUpDelay | html %] days.</p>[% END %]
83
               [% IF ( overloop ) %]
83
            [% IF ( overloop ) %]
84
               <form name="cancelAllReserve" action="waitingreserves.pl" method="post">
84
                <span id="holdsover-cancel-all">
85
                   <input type="hidden" name="cancelall" value="1" />
85
                   <form name="cancelAllReserve" action="waitingreserves.pl" method="post">
86
                   <input type="hidden" name="allbranches" value="[% allbranches | html %]" />
86
                       <input type="hidden" name="cancelall" value="1" />
87
                   <input type="hidden" name="tab" value="holdsover">
87
                       <input type="hidden" name="allbranches" value="[% allbranches | html %]" />
88
                   [% IF TransferWhenCancelAllWaitingHolds %]
88
                       <input type="hidden" name="tab" value="holdsover">
89
                       <input type="submit" value="Cancel and Transfer all" />
89
                       [% IF TransferWhenCancelAllWaitingHolds %]
90
                   [% ELSE %]
90
                           <input type="submit" value="Cancel and Transfer all" />
91
                       <input type="submit" value="Cancel all" />
91
                       [% ELSE %]
92
                           <input type="submit" value="Cancel all" />
93
                       [% END %]
94
                   </form>
95
                   [% UNLESS TransferWhenCancelAllWaitingHolds %]
96
                        Only items that need not be transferred will be cancelled (TransferWhenCancelAllWaitingHolds syspref)
92
                   [% END %]
97
                   [% END %]
93
               </form>
98
                </span>
94
               [% UNLESS TransferWhenCancelAllWaitingHolds %]
95
                    Only items that need not be transferred will be cancelled (TransferWhenCancelAllWaitingHolds sypref)
96
               [% END %]
97
98
               [% INCLUDE waiting_holds.inc table_name='holdso' reserveloop=overloop %]
99
               [% INCLUDE waiting_holds.inc table_name='holdso' reserveloop=overloop %]
99
        [% ELSE %]
100
            [% ELSE %]
100
            <div class="dialog message">No holds found.</div>
101
                <div class="dialog message">No holds found.</div>
101
                [% END %]
102
            [% END %]
102
        </div>
103
        </div>
103
        </div>
104
        </div>
104
    [% END %]
105
    [% END %]
105
- 

Return to bug 13094