Lines 192-200
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 |
[% IF existingauthtypeloo.value == "" %] |
|
|
197 |
<option value="" selected="selected">[% existingauthtypeloo.authtypetext %]</option> |
198 |
[% ELSE %] |
199 |
<option value="[% existingauthtypeloo.value %]">[% existingauthtypeloo.authtypetext %]</option> |
200 |
[% END %] |
198 |
[% END %] |
201 |
[% END %] |
199 |
</select> |
202 |
</select> |
200 |
<input type="submit" value="OK" class="submit" /> |
203 |
<input type="submit" value="OK" class="submit" /> |
Lines 211-217
return false;
Link Here
|
211 |
<h2>Select an authority framework</h2> |
214 |
<h2>Select an authority framework</h2> |
212 |
<form action="[% script_name %]" method="post"> |
215 |
<form action="[% script_name %]" method="post"> |
213 |
<select name="authtypecode"> |
216 |
<select name="authtypecode"> |
214 |
<option value="">Default</option> |
|
|
215 |
[% FOREACH authtypeloo IN authtypeloop %] |
217 |
[% FOREACH authtypeloo IN authtypeloop %] |
216 |
[% IF ( authtypeloo.selected ) %] |
218 |
[% IF ( authtypeloo.selected ) %] |
217 |
<option value="[% authtypeloo.value %]" selected="selected">[% authtypeloo.authtypetext %]</option> |
219 |
<option value="[% authtypeloo.value %]" selected="selected">[% authtypeloo.authtypetext %]</option> |
218 |
- |
|
|