Lines 25-35
Link Here
|
25 |
<input type="hidden" name="type" value="intranet" /> |
25 |
<input type="hidden" name="type" value="intranet" /> |
26 |
<select name="authtypecode"> |
26 |
<select name="authtypecode"> |
27 |
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %] |
27 |
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %] |
28 |
[% FOREACH authtypesloo IN authtypesloop %] |
28 |
[% FOREACH authority_type IN authority_types %] |
29 |
[% IF ( authtypesloo.selected ) %] |
29 |
[% IF authority_type.authtypecode == authtypecode %] |
30 |
<option value="[% authtypesloo.value %]" selected="selected">[% authtypesloo.authtypetext %]</option> |
30 |
<option value="[% authority_type.value %]" selected="selected">[% authority_type.authtypetext %]</option> |
31 |
[% ELSE %] |
31 |
[% ELSE %] |
32 |
<option value="[% authtypesloo.value %]">[% authtypesloo.authtypetext %]</option> |
32 |
<option value="[% authority_type.value %]">[% authority_type.authtypetext %]</option> |
33 |
[% END %] |
33 |
[% END %] |
34 |
[% END %] |
34 |
[% END %] |
35 |
</select> |
35 |
</select> |
Lines 79-91
Link Here
|
79 |
<form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get"> |
79 |
<form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get"> |
80 |
<input type="hidden" name="op" value="do_search" /> |
80 |
<input type="hidden" name="op" value="do_search" /> |
81 |
<input type="hidden" name="type" value="intranet" /> |
81 |
<input type="hidden" name="type" value="intranet" /> |
82 |
<select name="authtypecode"> |
82 |
<select name="authtypecode"> |
83 |
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %] |
83 |
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %] |
84 |
[% FOREACH authtypesloo IN authtypesloop %] |
84 |
[% FOREACH authority_type IN authority_types %] |
85 |
[% IF ( authtypesloo.selected ) %] |
85 |
[% IF authority_type.authtypecode == authtypecode %] |
86 |
<option value="[% authtypesloo.value %]" selected="selected">[% authtypesloo.authtypetext %]</option> |
86 |
<option value="[% authority_type.value %]" selected="selected">[% authority_type.authtypetext %]</option> |
87 |
[% ELSE %] |
87 |
[% ELSE %] |
88 |
<option value="[% authtypesloo.value %]">[% authtypesloo.authtypetext %]</option> |
88 |
<option value="[% authority_type.value %]">[% authority_type.authtypetext %]</option> |
89 |
[% END %] |
89 |
[% END %] |
90 |
[% END %] |
90 |
[% END %] |
91 |
</select> |
91 |
</select> |
Lines 135-145
Link Here
|
135 |
<input type="hidden" name="type" value="intranet" /> |
135 |
<input type="hidden" name="type" value="intranet" /> |
136 |
<select name="authtypecode"> |
136 |
<select name="authtypecode"> |
137 |
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %] |
137 |
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %] |
138 |
[% FOREACH authtypesloo IN authtypesloop %] |
138 |
[% FOREACH authority_type IN authority_types %] |
139 |
[% IF ( authtypesloo.selected ) %] |
139 |
[% IF authority_type.authtypecode == authtypecode %] |
140 |
<option value="[% authtypesloo.value %]" selected="selected">[% authtypesloo.authtypetext %]</option> |
140 |
<option value="[% authority_type.value %]" selected="selected">[% authority_type.authtypetext %]</option> |
141 |
[% ELSE %] |
141 |
[% ELSE %] |
142 |
<option value="[% authtypesloo.value %]">[% authtypesloo.authtypetext %]</option> |
142 |
<option value="[% authority_type.value %]">[% authority_type.authtypetext %]</option> |
143 |
[% END %] |
143 |
[% END %] |
144 |
[% END %] |
144 |
[% END %] |
145 |
</select> |
145 |
</select> |