|
Lines 122-130
Link Here
|
| 122 |
<option value="">No notice</option> |
122 |
<option value="">No notice</option> |
| 123 |
[% FOREACH letter IN letters %] |
123 |
[% FOREACH letter IN letters %] |
| 124 |
[% IF letter.code == value.selected_lettercode %] |
124 |
[% IF letter.code == value.selected_lettercode %] |
| 125 |
<option value="[% letter.code | html %]" selected="selected">[% letter.name | html %]</option> |
125 |
<option value="[% letter.code | html %]" selected="selected">[% letter.name | html %] ( [% letter.code | html %] )</option> |
| 126 |
[% ELSE %] |
126 |
[% ELSE %] |
| 127 |
<option value="[% letter.code | html %]">[% letter.name | html %]</option> |
127 |
<option value="[% letter.code | html %]">[% letter.name | html %] ( [% letter.code | html %] )</option> |
| 128 |
[% END %] |
128 |
[% END %] |
| 129 |
[% END %] |
129 |
[% END %] |
| 130 |
</select> |
130 |
</select> |
| 131 |
- |
|
|