diff options
author | levinse <levinse> | 2011-01-19 21:50:02 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-01-19 21:50:02 +0000 |
commit | a436d84c61434204c3e557c7d9433225de32a412 (patch) | |
tree | 6b915bbcf7771631bba5ccfc95441f0087d1c424 /httemplate | |
parent | 8f004f5beae4bf832d5c07fc440e204c16978153 (diff) |
Add experimental OpenSRS export changes, and svc_domain UI changes for .au registrations
Diffstat (limited to 'httemplate')
-rwxr-xr-x | httemplate/edit/svc_domain.cgi | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/httemplate/edit/svc_domain.cgi b/httemplate/edit/svc_domain.cgi index 54a933dee..c3307fa8c 100755 --- a/httemplate/edit/svc_domain.cgi +++ b/httemplate/edit/svc_domain.cgi @@ -35,6 +35,23 @@ Available top-level domains: <% $export->option('tlds') %> </TR> +% if($export->option('auoptions')) { +% # XXX: this whole thing should be done like svc_Common with label_fixup, etc. eventually + <% include('/elements/tr-select.html', + 'field' => 'au_eligibiilty_type', + 'label' => 'AU Eligibility Type', + 'value' => $svc_domain->au_eligibility_type, + 'options' => $svc_domain->au_eligibility_type_values, + ) + %> + <% include('/elements/tr-input-text.html', + 'field' => 'au_registrant_name', + 'label' => 'AU Registrant Name', + 'value' => $svc_domain->au_registrant_name, + ) + %> +% } + % } </TD> </TR> |