Lines 129-140
Link Here
|
129 |
<select name="itype" id="itypeloop"> |
129 |
<select name="itype" id="itypeloop"> |
130 |
<option value="">All item types</option> |
130 |
<option value="">All item types</option> |
131 |
[% FOREACH itypeloo IN itypeloop %] |
131 |
[% FOREACH itypeloo IN itypeloop %] |
132 |
[% IF ( itypeloo.selected ) %] |
|
|
133 |
<option value="[% itypeloo.itemtype %]" selected="selected">[% itypeloo.description |html %]</option> |
134 |
[% ELSE %] |
135 |
<option value="[% itypeloo.itemtype %]">[% itypeloo.description |html %]</option> |
132 |
<option value="[% itypeloo.itemtype %]">[% itypeloo.description |html %]</option> |
136 |
[% END %] |
133 |
[% END %] |
137 |
[% END %] |
|
|
138 |
</select> |
134 |
</select> |
139 |
</p> |
135 |
</p> |
140 |
<p> |
136 |
<p> |
141 |
- |
|
|