|
Lines 206-211
Link Here
|
| 206 |
</li> |
206 |
</li> |
| 207 |
|
207 |
|
| 208 |
<li><label for="ccode_item_[% item.item_id | html %]">ccode</label><select id="ccode_item_[% item.item_id | html %]" name="ccode_[% item.biblio_count | html %]"> |
208 |
<li><label for="ccode_item_[% item.item_id | html %]">ccode</label><select id="ccode_item_[% item.item_id | html %]" name="ccode_[% item.biblio_count | html %]"> |
|
|
209 |
<option value=""> </option> |
| 209 |
[% FOREACH ccodeloo IN ccodeloop %] |
210 |
[% FOREACH ccodeloo IN ccodeloop %] |
| 210 |
[% IF ( ccodeloo.code ) == (item.ccode) %]<option value="[% ccodeloo.code | html %]" selected="selected">[% ccodeloo.description | html %]</option>[% ELSE %]<option value="[% ccodeloo.code | html %]">[% ccodeloo.description | html %]</option>[% END %] |
211 |
[% IF ( ccodeloo.code ) == (item.ccode) %]<option value="[% ccodeloo.code | html %]" selected="selected">[% ccodeloo.description | html %]</option>[% ELSE %]<option value="[% ccodeloo.code | html %]">[% ccodeloo.description | html %]</option>[% END %] |
| 211 |
[% END %] |
212 |
[% END %] |
|
Lines 213-218
Link Here
|
| 213 |
</li> |
214 |
</li> |
| 214 |
|
215 |
|
| 215 |
<li><label for="notforloan_item_[% item.item_id | html %]">notforloan</label><select id="notforloan_item_[% item.item_id | html %]" name="notforloan_[% item.biblio_count | html %]"> |
216 |
<li><label for="notforloan_item_[% item.item_id | html %]">notforloan</label><select id="notforloan_item_[% item.item_id | html %]" name="notforloan_[% item.biblio_count | html %]"> |
|
|
217 |
<option value=""> </option> |
| 216 |
[% FOREACH n IN notforloanloop %] |
218 |
[% FOREACH n IN notforloanloop %] |
| 217 |
[% IF n.code == item.notforloan %] |
219 |
[% IF n.code == item.notforloan %] |
| 218 |
<option value="[% n.code | html %]" selected="selected">[% n.description | html %]</option> |
220 |
<option value="[% n.code | html %]" selected="selected">[% n.description | html %]</option> |
| 219 |
- |
|
|