Lines 5-16
Link Here
|
5 |
<thead> |
5 |
<thead> |
6 |
<tr> |
6 |
<tr> |
7 |
<th class="NoSort"><input type="checkbox" class="select_hold_all"/></th> |
7 |
<th class="NoSort"><input type="checkbox" class="select_hold_all"/></th> |
8 |
<th data-type="@data-sort">Waiting since</th> |
8 |
<th>Waiting since</th> |
9 |
<th data-type="@data-sort">Date hold placed</th> |
9 |
<th>Date hold placed</th> |
10 |
[% IF table_name == 'holdscr' %] |
10 |
[% IF table_name == 'holdscr' %] |
11 |
<th data-type="@data-sort">Date cancellation requested</th> |
11 |
<th data-type="@data-sort">Date cancellation requested</th> |
12 |
[% END %] |
12 |
[% END %] |
13 |
<th data-type="@data-sort">Expiration date</th> |
13 |
<th>Expiration date</th> |
14 |
<th class="anti-the">Title</th> |
14 |
<th class="anti-the">Title</th> |
15 |
<th>Patron</th> |
15 |
<th>Patron</th> |
16 |
<th>Home library</th> |
16 |
<th>Home library</th> |
Lines 26-33
Link Here
|
26 |
[% FOREACH reserveloo IN reserveloop %] |
26 |
[% FOREACH reserveloo IN reserveloop %] |
27 |
<tr> |
27 |
<tr> |
28 |
<th><input type="checkbox" class="select_hold" data-id="[% reserveloo.reserve_id | html %]"/></th> |
28 |
<th><input type="checkbox" class="select_hold" data-id="[% reserveloo.reserve_id | html %]"/></th> |
29 |
<td><span data-order="[% reserveloo.waitingdate | html %]">[% reserveloo.waitingdate | $KohaDates %]</span></td> |
29 |
<td data-order="[% reserveloo.waitingdate | html %]"><span>[% reserveloo.waitingdate | $KohaDates %]</span></td> |
30 |
<td><span data-order="[% reserveloo.reservedate | html %]">[% reserveloo.reservedate | $KohaDates %]</span></td> |
30 |
<td data-order="[% reserveloo.reservedate | html %]"><span>[% reserveloo.reservedate | $KohaDates %]</span></td> |
31 |
[% IF table_name == 'holdscr' %] |
31 |
[% IF table_name == 'holdscr' %] |
32 |
<td> |
32 |
<td> |
33 |
[% FOREACH cancellation_request IN reserveloo.cancellation_requests %] |
33 |
[% FOREACH cancellation_request IN reserveloo.cancellation_requests %] |
Lines 35-41
Link Here
|
35 |
[% END %] |
35 |
[% END %] |
36 |
</td> |
36 |
</td> |
37 |
[% END %] |
37 |
[% END %] |
38 |
<td><span data-order="[% reserveloo.expirationdate | html %]">[% reserveloo.expirationdate | $KohaDates %]</span></td> |
38 |
<td data-order="[% reserveloo.expirationdate | html %]"><span>[% reserveloo.expirationdate | $KohaDates %]</span></td> |
39 |
<td> |
39 |
<td> |
40 |
[% INCLUDE 'biblio-title.inc' biblio=reserveloo.biblio link = 1 %] |
40 |
[% INCLUDE 'biblio-title.inc' biblio=reserveloo.biblio link = 1 %] |
41 |
[% UNLESS ( item_level_itypes ) %] |
41 |
[% UNLESS ( item_level_itypes ) %] |
42 |
- |
|
|