|
Lines 188-196
Link Here
|
| 188 |
<select name="authtypecode"> |
188 |
<select name="authtypecode"> |
| 189 |
[% FOREACH authority_type IN authority_types%] |
189 |
[% FOREACH authority_type IN authority_types%] |
| 190 |
[% IF authority_type.authtypecode == authtypecode%] |
190 |
[% IF authority_type.authtypecode == authtypecode%] |
| 191 |
<option value="[% authority_type.value %]" selected="selected">[% authority_type.authtypetext %]</option> |
191 |
<option value="[% authority_type.authtypecode %]" selected="selected">[% authority_type.authtypetext %]</option> |
| 192 |
[% ELSE %] |
192 |
[% ELSE %] |
| 193 |
<option value="[% authority_type.value %]">[% authority_type.authtypetext %]</option> |
193 |
<option value="[% authority_type.authtypecode%]">[% authority_type.authtypetext %]</option> |
| 194 |
[% END %] |
194 |
[% END %] |
| 195 |
[% END %] |
195 |
[% END %] |
| 196 |
</select> |
196 |
</select> |
| 197 |
- |
|
|