|
Lines 139-145
Link Here
|
| 139 |
[% SET ccodes = AuthorisedValues.GetAuthValueDropbox('CCODE') %] |
139 |
[% SET ccodes = AuthorisedValues.GetAuthValueDropbox('CCODE') %] |
| 140 |
[% IF ( ccodes.count > 0 ) %] |
140 |
[% IF ( ccodes.count > 0 ) %] |
| 141 |
<li> |
141 |
<li> |
| 142 |
<label for="ccode">Collection: </label> |
142 |
<label for="ccodeloop">Collection: </label> |
| 143 |
<select id="ccodeloop" name="ccode"> |
143 |
<select id="ccodeloop" name="ccode"> |
| 144 |
<option value="">Filter collection</option> |
144 |
<option value="">Filter collection</option> |
| 145 |
[% FOREACH cc IN ccodes %] |
145 |
[% FOREACH cc IN ccodes %] |
|
Lines 162-168
Link Here
|
| 162 |
<input type="text" name="maxlocation" id="maxlocation" value="[% maxlocation | html %]" /> |
162 |
<input type="text" name="maxlocation" id="maxlocation" value="[% maxlocation | html %]" /> |
| 163 |
<li> |
163 |
<li> |
| 164 |
<label for="class_source">Call number classification scheme</label> |
164 |
<label for="class_source">Call number classification scheme</label> |
| 165 |
<select name="class_source"> |
165 |
<select name="class_source" id="class_source"> |
| 166 |
[% FOREACH class_source IN class_sources %] |
166 |
[% FOREACH class_source IN class_sources %] |
| 167 |
[% IF class_source.cn_source == pref_class %] |
167 |
[% IF class_source.cn_source == pref_class %] |
| 168 |
<option value="[% class_source.cn_source | html %]" selected="selected">[% class_source.description | html %] (default)</option> |
168 |
<option value="[% class_source.cn_source | html %]" selected="selected">[% class_source.description | html %] (default)</option> |
|
Lines 196-202
Link Here
|
| 196 |
[% value.lib | html %] |
196 |
[% value.lib | html %] |
| 197 |
[% END %] |
197 |
[% END %] |
| 198 |
</label> |
198 |
</label> |
| 199 |
<input type="checkbox" name="status-[% status.fieldname | html %]-[% value.authorised_value | html %]" id="[% value.authorised_value | html %]" /> |
199 |
<input type="checkbox" name="status-[% status.fieldname | html %]-[% value.authorised_value | html %]" id="[% value.id | html %]" /> |
| 200 |
</li> |
200 |
</li> |
| 201 |
[% END %] |
201 |
[% END %] |
| 202 |
[% END %] |
202 |
[% END %] |
| 203 |
- |
|
|