Lines 99-105
Link Here
|
99 |
<select name="shelf_number" id="shelf_number"> |
99 |
<select name="shelf_number" id="shelf_number"> |
100 |
<option value="">Select a list</option> |
100 |
<option value="">Select a list</option> |
101 |
[% FOREACH list IN lists %] |
101 |
[% FOREACH list IN lists %] |
102 |
<option value="[% list.shelfnumber %]">[% list.shelfname %]</option> |
102 |
<option value="[% list.shelfnumber | html %]">[% list.shelfname | html %]</option> |
103 |
[% END %] |
103 |
[% END %] |
104 |
</option> |
104 |
</option> |
105 |
</select> |
105 |
</select> |
106 |
- |
|
|