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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc (-4 lines)
Lines 3-11 Link Here
3
<table class="holds_table" id="[% table_name | html %]">
3
<table class="holds_table" id="[% table_name | html %]">
4
    <thead>
4
    <thead>
5
        <tr>
5
        <tr>
6
            [% IF select_column %]
7
            <th class="NoSort"><input type="checkbox" class="select_hold_all"/></th>
6
            <th class="NoSort"><input type="checkbox" class="select_hold_all"/></th>
8
            [% END %]
9
            <th>Waiting since</th>
7
            <th>Waiting since</th>
10
            <th>Date hold placed</th>
8
            <th>Date hold placed</th>
11
            <th>Expiration date</th>
9
            <th>Expiration date</th>
Lines 23-31 Link Here
23
    <tbody>
21
    <tbody>
24
        [% FOREACH reserveloo IN reserveloop %]
22
        [% FOREACH reserveloo IN reserveloop %]
25
            <tr>
23
            <tr>
26
                [% IF select_column %]
27
                <th><input type="checkbox" class="select_hold" data-id="[% reserveloo.reserve_id | html %]"/></th>
24
                <th><input type="checkbox" class="select_hold" data-id="[% reserveloo.reserve_id | html %]"/></th>
28
                [% END %]
29
                <td><span data-order="[% reserveloo.waitingdate | html %]">[% reserveloo.waitingdate | $KohaDates %]</span></td>
25
                <td><span data-order="[% reserveloo.waitingdate | html %]">[% reserveloo.waitingdate | $KohaDates %]</span></td>
30
                <td><span data-order="[% reserveloo.reservedate | html %]">[% reserveloo.reservedate | $KohaDates %]</span></td>
26
                <td><span data-order="[% reserveloo.reservedate | html %]">[% reserveloo.reservedate | $KohaDates %]</span></td>
31
                <td><span data-order="[% reserveloo.expirationdate | html %]">[% reserveloo.expirationdate | $KohaDates %]</span></td>
27
                <td><span data-order="[% reserveloo.expirationdate | html %]">[% reserveloo.expirationdate | $KohaDates %]</span></td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt (-3 / +2 lines)
Lines 95-101 Link Here
95
            <div id="toolbar" class="btn-toolbar">
95
            <div id="toolbar" class="btn-toolbar">
96
                <button class="cancel_selected_holds" data-bulk="true"></button>
96
                <button class="cancel_selected_holds" data-bulk="true"></button>
97
            </div>
97
            </div>
98
            [% INCLUDE waiting_holds.inc select_column='1' table_name='holdst' reserveloop=reserveloop tab='holdwaiting' %]
98
            [% INCLUDE waiting_holds.inc table_name='holdst' reserveloop=reserveloop tab='holdwaiting' %]
99
        [% ELSE %]
99
        [% ELSE %]
100
            <div class="dialog message">No holds found.</div>
100
            <div class="dialog message">No holds found.</div>
101
        [% END %]
101
        [% END %]
Lines 120-126 Link Here
120
                   [% END %]
120
                   [% END %]
121
121
122
                </span>
122
                </span>
123
               [% INCLUDE waiting_holds.inc select_column='1' table_name='holdso' reserveloop=overloop tab='holdsover' %]
123
               [% INCLUDE waiting_holds.inc table_name='holdso' reserveloop=overloop tab='holdsover' %]
124
            [% ELSE %]
124
            [% ELSE %]
125
                <div class="dialog message">No holds found.</div>
125
                <div class="dialog message">No holds found.</div>
126
            [% END %]
126
            [% END %]
127
- 

Return to bug 31141