Lines 446-454
function filterByFirstLetterSurname(letter) {
Link Here
|
446 |
<option value="">Any</option> |
446 |
<option value="">Any</option> |
447 |
[% FOREACH cat IN categories %] |
447 |
[% FOREACH cat IN categories %] |
448 |
[% IF cat.selected %] |
448 |
[% IF cat.selected %] |
449 |
<option selected="selected" value="[% cat.categorycode %]">[% cat.description %]</option> |
449 |
<option selected="selected" value="[% cat.categorycode %]">[% cat.description | html_entity %]</option> |
450 |
[% ELSE %] |
450 |
[% ELSE %] |
451 |
<option value="[% cat.categorycode %]">[% cat.description %]</option> |
451 |
<option value="[% cat.categorycode %]">[% cat.description | html_entity %]</option> |
452 |
[% END %] |
452 |
[% END %] |
453 |
[% END %] |
453 |
[% END %] |
454 |
</select> |
454 |
</select> |
455 |
- |
|
|