|
Lines 278-294
Link Here
|
| 278 |
|
278 |
|
| 279 |
[% IF late_subscriptions %] |
279 |
[% IF late_subscriptions %] |
| 280 |
<div class="pending-info" id="problem_late_subscriptions"> |
280 |
<div class="pending-info" id="problem_late_subscriptions"> |
| 281 |
<span>The following serials are late:</span> |
281 |
<span>The following serials have late issues:</span> |
| 282 |
<ul> |
282 |
<ul> |
| 283 |
[% FOREACH s IN late_subscriptions %] |
283 |
[% FOREACH s IN late_subscriptions %] |
| 284 |
<li> |
284 |
<li> |
| 285 |
<a href="/cgi-bin/koha/serials/serials-collection.pl?subscriptionid=[% s.subscription.subscriptionid | uri %]">[% s.subscription.biblio.title | html %]</a>: |
285 |
<a href="/cgi-bin/koha/serials/serials-collection.pl?subscriptionid=[% s.subscription.subscriptionid | uri %]">[% s.subscription.biblio.title | html %]</a>: |
| 286 |
[% FOREACH serial IN s.serials %] |
286 |
<span class="pending-number-link">[% s.serials.size | html %]</span> |
| 287 |
[% serial.serialseq | html %] |
287 |
</li> |
| 288 |
[% "," UNLESS loop.last %] |
288 |
[% END %] |
| 289 |
[% END %] |
|
|
| 290 |
</li> |
| 291 |
[% END %] |
| 292 |
</ul> |
289 |
</ul> |
| 293 |
</div> |
290 |
</div> |
| 294 |
[% END %] |
291 |
[% END %] |
| 295 |
- |
|
|