Lines 67-74
Link Here
|
67 |
<p><label for="categorycode">Category: </label><select name="categorycode" id="categorycode"> |
67 |
<p><label for="categorycode">Category: </label><select name="categorycode" id="categorycode"> |
68 |
<option value="">Any</option>[% FOREACH categorie IN categories %] |
68 |
<option value="">Any</option>[% FOREACH categorie IN categories %] |
69 |
[% IF ( categorie.selected ) %] |
69 |
[% IF ( categorie.selected ) %] |
70 |
<option value="[% categorie.categorycode %]" selected="selected">[% categorie.description %]</option>[% ELSE %] |
70 |
<option value="[% categorie.categorycode %]" selected="selected">[% categorie.description |html_entity %]</option>[% ELSE %] |
71 |
<option value="[% categorie.categorycode %]">[% categorie.description %]</option>[% END %] |
71 |
<option value="[% categorie.categorycode %]">[% categorie.description |html_entity %]</option>[% END %] |
72 |
[% END %]</select></p> |
72 |
[% END %]</select></p> |
73 |
[% END %] |
73 |
[% END %] |
74 |
</div> |
74 |
</div> |
75 |
- |
|
|