Lines 192-198
return false;
Link Here
|
192 |
<input type="hidden" name="authtypecode" value="[% authtypecode %]" /> |
192 |
<input type="hidden" name="authtypecode" value="[% authtypecode %]" /> |
193 |
Create authority framework for [% authtypecode %] using |
193 |
Create authority framework for [% authtypecode %] using |
194 |
<select name="existingauthtypecode"> |
194 |
<select name="existingauthtypecode"> |
195 |
<option value="">Default</option> |
|
|
196 |
[% FOREACH existingauthtypeloo IN existingauthtypeloop %] |
195 |
[% FOREACH existingauthtypeloo IN existingauthtypeloop %] |
197 |
<option value="[% existingauthtypeloo.value %]">[% existingauthtypeloo.authtypetext %]</option> |
196 |
<option value="[% existingauthtypeloo.value %]">[% existingauthtypeloo.authtypetext %]</option> |
198 |
[% END %] |
197 |
[% END %] |
Lines 211-217
return false;
Link Here
|
211 |
<h2>Select an authority framework</h2> |
210 |
<h2>Select an authority framework</h2> |
212 |
<form action="[% script_name %]" method="post"> |
211 |
<form action="[% script_name %]" method="post"> |
213 |
<select name="authtypecode"> |
212 |
<select name="authtypecode"> |
214 |
<option value="">Default</option> |
|
|
215 |
[% FOREACH authtypeloo IN authtypeloop %] |
213 |
[% FOREACH authtypeloo IN authtypeloop %] |
216 |
[% IF ( authtypeloo.selected ) %] |
214 |
[% IF ( authtypeloo.selected ) %] |
217 |
<option value="[% authtypeloo.value %]" selected="selected">[% authtypeloo.authtypetext %]</option> |
215 |
<option value="[% authtypeloo.value %]" selected="selected">[% authtypeloo.authtypetext %]</option> |
218 |
- |
|
|