Lines 3-10
Link Here
|
3 |
<table id="[% table_name | html %]"> |
3 |
<table id="[% table_name | html %]"> |
4 |
<thead> |
4 |
<thead> |
5 |
<tr> |
5 |
<tr> |
6 |
<th class="title-string">Waiting since</th> |
6 |
<th>Waiting since</th> |
7 |
<th class="title-string">Date hold placed</th> |
7 |
<th>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 library</th> |
10 |
<th>Home library</th> |
Lines 19-26
Link Here
|
19 |
<tbody> |
19 |
<tbody> |
20 |
[% FOREACH reserveloo IN reserveloop %] |
20 |
[% FOREACH reserveloo IN reserveloop %] |
21 |
<tr> |
21 |
<tr> |
22 |
<td><span title="[% reserveloo.waitingdate | html %]">[% reserveloo.waitingdate | $KohaDates %]</span></td> |
22 |
<td data-order="[% reserveloo.waitingdate | html %]">[% reserveloo.waitingdate | $KohaDates %]</td> |
23 |
<td><span title="[% reserveloo.reservedate | html %]">[% reserveloo.reservedate | $KohaDates %]</span></td> |
23 |
<td data-order="[% reserveloo.reservedate | html %]">[% reserveloo.reservedate | $KohaDates %]</td> |
24 |
<td> |
24 |
<td> |
25 |
[% INCLUDE 'biblio-title.inc' biblio=reserveloo.biblio link = 1 %] |
25 |
[% INCLUDE 'biblio-title.inc' biblio=reserveloo.biblio link = 1 %] |
26 |
[% UNLESS ( item_level_itypes ) %] |
26 |
[% UNLESS ( item_level_itypes ) %] |
27 |
- |
|
|