Lines 24-37
Link Here
|
24 |
[% FOREACH month IN monthly_choice %] |
24 |
[% FOREACH month IN monthly_choice %] |
25 |
[% IF permanent_irreg.grep( month.value ).0 == month.value %] |
25 |
[% IF permanent_irreg.grep( month.value ).0 == month.value %] |
26 |
<input type="checkbox" name="permanent_irregularity" |
26 |
<input type="checkbox" name="permanent_irregularity" |
27 |
id="[% month.name %]" data-dow="[% month.value %]" |
27 |
id="[% month.name | html %]" data-dow="[% month.value | html %]" |
28 |
value="[% month.value %]" class="skip" |
28 |
value="[% month.value | html %]" class="skip" |
29 |
checked="checked" |
29 |
checked="checked" |
30 |
/> |
30 |
/> |
31 |
[% ELSE %] |
31 |
[% ELSE %] |
32 |
<input type="checkbox" name="permanent_irregularity" |
32 |
<input type="checkbox" name="permanent_irregularity" |
33 |
id="[% month.name %]" data-dow="[% month.value %]" |
33 |
id="[% month.name | html %]" data-dow="[% month.value | html %]" |
34 |
value="[% month.value %]" class="skip" |
34 |
value="[% month.value | html %]" class="skip" |
35 |
/> |
35 |
/> |
36 |
[% END %] |
36 |
[% END %] |
37 |
<label for="[% month.name | html %]" class="inline">[% PROCESS months m=month.name %]</label> |
37 |
<label for="[% month.name | html %]" class="inline">[% PROCESS months m=month.name %]</label> |