Lines 57-70
Link Here
|
57 |
[% FOREACH prediction IN predictions_loop %] |
57 |
[% FOREACH prediction IN predictions_loop %] |
58 |
<tr> |
58 |
<tr> |
59 |
<td> |
59 |
<td> |
60 |
[% IF ( matches = prediction.number.match('Spring(.*)') ) %] |
60 |
[% IF ( matches = prediction.number.match('(.*)Spring(.*)') ) %] |
61 |
Spring[% matches.join("") %] |
61 |
[% matches.0 %]Spring[% matches.1 %] |
62 |
[% ELSIF ( matches = prediction.number.match('Summer(.*)') ) %] |
62 |
[% ELSIF ( matches = prediction.number.match('(.*)Summer(.*)') ) %] |
63 |
Summer[% matches.join("") %] |
63 |
[% matches.0 %]Summer[% matches.1 %] |
64 |
[% ELSIF ( matches = prediction.number.match('Fall(.*)') ) %] |
64 |
[% ELSIF ( matches = prediction.number.match('(.*)Fall(.*)') ) %] |
65 |
Fall[% matches.join("") %] |
65 |
[% matches.0 %]Fall[% matches.1 %] |
66 |
[% ELSIF ( matches = prediction.number.match('Winter(.*)') ) %] |
66 |
[% ELSIF ( matches = prediction.number.match('(.*)Winter(.*)') ) %] |
67 |
Winter[% matches.join("") %] |
67 |
[% matches.0 %]Winter[% matches.1 %] |
68 |
[% ELSE %] |
68 |
[% ELSE %] |
69 |
[% prediction.number %] |
69 |
[% prediction.number %] |
70 |
[% END %] |
70 |
[% END %] |
71 |
- |
|
|