|
Lines 336-342
Link Here
|
| 336 |
[% FOREACH serialslis IN serialslist %] |
336 |
[% FOREACH serialslis IN serialslist %] |
| 337 |
<tr> |
337 |
<tr> |
| 338 |
<td> |
338 |
<td> |
| 339 |
[% serialslis.serialseq | html %] |
339 |
[% IF ( matches = serialslis.serialseq.match('(.*)Spring(.*)') ) %] |
|
|
340 |
[% matches.0 | html %]Spring[% matches.1 | html %] |
| 341 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Summer(.*)') ) %] |
| 342 |
[% matches.0 | html %]Summer[% matches.1 | html %] |
| 343 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Fall(.*)') ) %] |
| 344 |
[% matches.0 | html %]Fall[% matches.1 | html %] |
| 345 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Winter(.*)') ) %] |
| 346 |
[% matches.0 | html %]Winter[% matches.1 | html %] |
| 347 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Spr(.*)') ) %] |
| 348 |
[% matches.0 | html %]Spr[% matches.1 | html %] |
| 349 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Sum(.*)') ) %] |
| 350 |
[% matches.0 | html %]Sum[% matches.1 | html %] |
| 351 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Fal(.*)') ) %] |
| 352 |
[% matches.0 | html %]Fal[% matches.1 | html %] |
| 353 |
[% ELSIF ( matches = serialslis.serialseq.match('(.*)Win(.*)') ) %] |
| 354 |
[% matches.0 | html %]Win[% matches.1 | html %] |
| 355 |
[% ELSE %] |
| 356 |
[% serialslis.serialseq | html %] |
| 357 |
[% END %] |
| 340 |
</td> |
358 |
</td> |
| 341 |
<td> |
359 |
<td> |
| 342 |
[% IF serialslis.planneddate %] |
360 |
[% IF serialslis.planneddate %] |
| 343 |
- |
|
|