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> |