|
Lines 56-63
Link Here
|
| 56 |
<th>Barcode</th> |
56 |
<th>Barcode</th> |
| 57 |
<th>Library</th> |
57 |
<th>Library</th> |
| 58 |
<th class="title-string">Hold date</th> |
58 |
<th class="title-string">Hold date</th> |
| 59 |
<th class="title-string">Notification date</th> |
|
|
| 60 |
<th class="title-string">Reminder date</th> |
| 61 |
<th class="title-string">Expiration date</th> |
59 |
<th class="title-string">Expiration date</th> |
| 62 |
<th class="title-string">Waiting date</th> |
60 |
<th class="title-string">Waiting date</th> |
| 63 |
<th class="title-string">Cancellation date</th> |
61 |
<th class="title-string">Cancellation date</th> |
|
Lines 72-91
Link Here
|
| 72 |
<td>[% Branches.GetName( hold.branchcode ) %]</td> |
70 |
<td>[% Branches.GetName( hold.branchcode ) %]</td> |
| 73 |
<td><span title="[% hold.reservedate %]">[% hold.reservedate | $KohaDates %]</span></td> |
71 |
<td><span title="[% hold.reservedate %]">[% hold.reservedate | $KohaDates %]</span></td> |
| 74 |
<td> |
72 |
<td> |
| 75 |
[% IF hold.notificationdate %] |
|
|
| 76 |
<span title="[% hold.notificationdate %]">[% hold.notificationdate | $KohaDates %]</span> |
| 77 |
[% ELSE %] |
| 78 |
<span title="0000-00-00"></span> |
| 79 |
[% END %] |
| 80 |
</td> |
| 81 |
<td> |
| 82 |
[% IF hold.reminderdate %] |
| 83 |
<span title="[% hold.reminderdate %]">[% hold.reminderdate | $KohaDates %]</span> |
| 84 |
[% ELSE %] |
| 85 |
<span title="0000-00-00"></span> |
| 86 |
[% END %] |
| 87 |
</td> |
| 88 |
<td> |
| 89 |
[% IF hold.expirationdate %] |
73 |
[% IF hold.expirationdate %] |
| 90 |
<span title="[% hold.expirationdate %]">[% hold.expirationdate | $KohaDates %]</span> |
74 |
<span title="[% hold.expirationdate %]">[% hold.expirationdate | $KohaDates %]</span> |
| 91 |
[% ELSE %] |
75 |
[% ELSE %] |
| 92 |
- |
|
|