|
Lines 297-313
Link Here
|
| 297 |
|
297 |
|
| 298 |
[% IF late_subscriptions %] |
298 |
[% IF late_subscriptions %] |
| 299 |
<div class="pending-info" id="problem_late_subscriptions"> |
299 |
<div class="pending-info" id="problem_late_subscriptions"> |
| 300 |
<span>The following serials are late:</span> |
300 |
<span>The following serials have late issues:</span> |
| 301 |
<ul> |
301 |
<ul> |
| 302 |
[% FOREACH s IN late_subscriptions %] |
302 |
[% FOREACH s IN late_subscriptions %] |
| 303 |
<li> |
303 |
<li> |
| 304 |
<a href="/cgi-bin/koha/serials/serials-collection.pl?subscriptionid=[% s.subscription.subscriptionid | uri %]">[% s.subscription.biblio.title | html %]</a>: |
304 |
<a href="/cgi-bin/koha/serials/serials-collection.pl?subscriptionid=[% s.subscription.subscriptionid | uri %]">[% s.subscription.biblio.title | html %]</a>: |
| 305 |
[% FOREACH serial IN s.serials %] |
305 |
<span class="pending-number-link">[% s.serials.size | html %]</span> |
| 306 |
[% serial.serialseq | html %] |
306 |
</li> |
| 307 |
[% "," UNLESS loop.last %] |
307 |
[% END %] |
| 308 |
[% END %] |
|
|
| 309 |
</li> |
| 310 |
[% END %] |
| 311 |
</ul> |
308 |
</ul> |
| 312 |
</div> |
309 |
</div> |
| 313 |
[% END %] |
310 |
[% END %] |
| 314 |
- |
|
|