Lines 191-201
Link Here
|
191 |
<input type="hidden" name="type" value="intranet" /> |
191 |
<input type="hidden" name="type" value="intranet" /> |
192 |
<select name="authtypecode"> |
192 |
<select name="authtypecode"> |
193 |
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %] |
193 |
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %] |
194 |
[% FOREACH authtypesloo IN authtypesloop %] |
194 |
[% FOREACH authority_type IN authority_types %] |
195 |
[% IF ( authtypesloo.selected ) %] |
195 |
[% IF authority_type.authtypecode == authtypecode %] |
196 |
<option value="[% authtypesloo.value %]" selected="selected">[% authtypesloo.authtypetext %]</option> |
196 |
<option value="[% authority_type.authtypecode %]" selected="selected">[% authority_type.authtypetext %]</option> |
197 |
[% ELSE %] |
197 |
[% ELSE %] |
198 |
<option value="[% authtypesloo.value %]">[% authtypesloo.authtypetext %]</option> |
198 |
<option value="[% authority_type.authtypecode %]">[% authority_type.authtypetext %]</option> |
199 |
[% END %] |
199 |
[% END %] |
200 |
[% END %] |
200 |
[% END %] |
201 |
</select> |
201 |
</select> |
202 |
- |
|
|