|
Lines 222-227
Link Here
|
| 222 |
</li> |
222 |
</li> |
| 223 |
|
223 |
|
| 224 |
<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 %]"> |
224 |
<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 %]"> |
|
|
225 |
<option value=""> </option> |
| 225 |
[% FOREACH ccodeloo IN ccodeloop %] |
226 |
[% FOREACH ccodeloo IN ccodeloop %] |
| 226 |
[% 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 %] |
227 |
[% 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 %] |
| 227 |
[% END %] |
228 |
[% END %] |
|
Lines 229-234
Link Here
|
| 229 |
</li> |
230 |
</li> |
| 230 |
|
231 |
|
| 231 |
<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 %]"> |
232 |
<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 %]"> |
|
|
233 |
<option value=""> </option> |
| 232 |
[% FOREACH n IN notforloanloop %] |
234 |
[% FOREACH n IN notforloanloop %] |
| 233 |
[% IF n.code == item.notforloan %] |
235 |
[% IF n.code == item.notforloan %] |
| 234 |
<option value="[% n.code | html %]" selected="selected">[% n.description | html %]</option> |
236 |
<option value="[% n.code | html %]" selected="selected">[% n.description | html %]</option> |
| 235 |
- |
|
|