Lines 219-225
Link Here
|
219 |
<th>Basket</th> |
219 |
<th>Basket</th> |
220 |
<th>Basket group</th> |
220 |
<th>Basket group</th> |
221 |
<th>Order line</th> |
221 |
<th>Order line</th> |
222 |
<th title="Total holds / Item holds">Holds</th> |
222 |
<th title="Item holds / Total holds">Holds</th> |
223 |
<th>Summary</th> |
223 |
<th>Summary</th> |
224 |
<th>View record</th> |
224 |
<th>View record</th> |
225 |
<th>Quantity</th> |
225 |
<th>Quantity</th> |
Lines 281-294
Link Here
|
281 |
[% END %] |
281 |
[% END %] |
282 |
</td> |
282 |
</td> |
283 |
<td> |
283 |
<td> |
284 |
[% IF order.total_holds > 0 %] |
284 |
[% IF order.item_holds > 0 %] |
285 |
<span class="error"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% order.biblionumber %]">[% order.total_holds %]</a></span> |
285 |
<span class="error"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% order.biblionumber %]">[% order.item_holds %]</a></span> |
286 |
[% ELSE %] |
286 |
[% ELSE %] |
287 |
0 |
287 |
0 |
288 |
[% END %] |
288 |
[% END %] |
289 |
/ |
289 |
/ |
290 |
[% IF order.item_holds > 0 %] |
290 |
[% IF order.total_holds > 0 %] |
291 |
<span class="error"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% order.biblionumber %]">[% order.item_holds %]</a></span> |
291 |
<span class="error"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% order.biblionumber %]">[% order.total_holds %]</a></span> |
292 |
[% ELSE %] |
292 |
[% ELSE %] |
293 |
0 |
293 |
0 |
294 |
[% END %] |
294 |
[% END %] |
295 |
- |
|
|