|
Lines 788-794
Link Here
|
| 788 |
<tbody> |
788 |
<tbody> |
| 789 |
[% FOREACH latestserial IN subscription.latestserials %] |
789 |
[% FOREACH latestserial IN subscription.latestserials %] |
| 790 |
<tr> |
790 |
<tr> |
| 791 |
<td class="serialseq">[% latestserial.serialseq | html %]</td> |
791 |
<td class="serialseq"> |
|
|
792 |
[% IF ( matches = latestserial.serialseq.match('(.*)Spring(.*)') ) %] |
| 793 |
[% matches.0 | html %]Spring[% matches.1 | html %] |
| 794 |
[% ELSIF ( matches = latestserial.serialseq.match('(.*)Summer(.*)') ) %] |
| 795 |
[% matches.0 | html %]Summer[% matches.1 | html %] |
| 796 |
[% ELSIF ( matches = latestserial.serialseq.match('(.*)Fall(.*)') ) %] |
| 797 |
[% matches.0 | html %]Fall[% matches.1 | html %] |
| 798 |
[% ELSIF ( matches = latestserial.serialseq.match('(.*)Winter(.*)') ) %] |
| 799 |
[% matches.0 | html %]Winter[% matches.1 | html %] |
| 800 |
[% ELSIF ( matches = latestserial.serialseq.match('(.*)Spr(.*)') ) %] |
| 801 |
[% matches.0 | html %]Spr[% matches.1 | html %] |
| 802 |
[% ELSIF ( matches = latestserial.serialseq.match('(.*)Sum(.*)') ) %] |
| 803 |
[% matches.0 | html %]Sum[% matches.1 | html %] |
| 804 |
[% ELSIF ( matches = latestserial.serialseq.match('(.*)Fal(.*)') ) %] |
| 805 |
[% matches.0 | html %]Fal[% matches.1 | html %] |
| 806 |
[% ELSIF ( matches = latestserial.serialseq.match('(.*)Win(.*)') ) %] |
| 807 |
[% matches.0 | html %]Win[% matches.1 | html %] |
| 808 |
[% ELSE %] |
| 809 |
[% latestserial.serialseq | html %] |
| 810 |
[% END %] |
| 811 |
</td> |
| 792 |
<td class="publisheddate"><span title="[% latestserial.publisheddate | html %]">[% latestserial.publisheddate | $KohaDates %]</span></td> |
812 |
<td class="publisheddate"><span title="[% latestserial.publisheddate | html %]">[% latestserial.publisheddate | $KohaDates %]</span></td> |
| 793 |
<td class="planneddate"><span title="[% latestserial.planneddate | html %]">[% latestserial.planneddate | $KohaDates %]</span></td> |
813 |
<td class="planneddate"><span title="[% latestserial.planneddate | html %]">[% latestserial.planneddate | $KohaDates %]</span></td> |
| 794 |
<td class="serial_status"> |
814 |
<td class="serial_status"> |
| 795 |
- |
|
|