|
Lines 308-314
Link Here
|
| 308 |
[% FOREACH serialslis IN serialslist %] |
308 |
[% FOREACH serialslis IN serialslist %] |
| 309 |
<tr> |
309 |
<tr> |
| 310 |
<td> |
310 |
<td> |
| 311 |
[% serialslis.serialseq | html %] |
311 |
[% IF ( matches = serialslis.serialseq.match('(.*)Spring(.*)') ) %] |
|
|
312 |
[% matches.0 | html %]Spring[% matches.1 | html %] |
| 313 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Summer(.*)') ) %] |
| 314 |
[% matches.0 | html %]Summer[% matches.1 | html %] |
| 315 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Fall(.*)') ) %] |
| 316 |
[% matches.0 | html %]Fall[% matches.1 | html %] |
| 317 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Winter(.*)') ) %] |
| 318 |
[% matches.0 | html %]Winter[% matches.1 | html %] |
| 319 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Spr(.*)') ) %] |
| 320 |
[% matches.0 | html %]Spr[% matches.1 | html %] |
| 321 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Sum(.*)') ) %] |
| 322 |
[% matches.0 | html %]Sum[% matches.1 | html %] |
| 323 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Fal(.*)') ) %] |
| 324 |
[% matches.0 | html %]Fal[% matches.1 | html %] |
| 325 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Win(.*)') ) %] |
| 326 |
[% matches.0 | html %]Win[% matches.1 | html %] |
| 327 |
[% ELSE %] |
| 328 |
[% serialslis.serialseq | html %] |
| 329 |
[% END %] |
| 312 |
</td> |
330 |
</td> |
| 313 |
<td> |
331 |
<td> |
| 314 |
[% IF serialslis.planneddate %] |
332 |
[% IF serialslis.planneddate %] |
| 315 |
- |
|
|