diff options
author | ivan <ivan> | 2010-02-22 07:13:30 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-02-22 07:13:30 +0000 |
commit | 8c62a38940c64c9c6c43d0dd892600f7bb726604 (patch) | |
tree | 9782b584cbd0103a8eb4d7e925cbcb3feb8bd1ca /httemplate/edit | |
parent | 0689d75b6c0c2d30565b64d72b276cad5b195b70 (diff) |
communigate: domain aliases, enabled services & administrator domain, RT#7083
Diffstat (limited to 'httemplate/edit')
-rwxr-xr-x | httemplate/edit/svc_domain.cgi | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/httemplate/edit/svc_domain.cgi b/httemplate/edit/svc_domain.cgi index a2b87e4fa..a3589c4a7 100755 --- a/httemplate/edit/svc_domain.cgi +++ b/httemplate/edit/svc_domain.cgi @@ -38,6 +38,22 @@ Available top-level domains: <% $export->option('tlds') %> </TD> </TR> +% if ( $communigate ) { + <TR> + <TD ALIGN="right">Administrator domain</TD> + <TD> + <% include('/elements/select-domain.html', + 'element_name' => 'parent_svcnum', + 'curr_value' => $svc_domain->parent_svcnum, + 'empty_label' => '(none)', + ) + %> + </TD> + </TR> +% } else { + <INPUT TYPE="hidden" NAME="parent_svcnum" VALUE="<% $svc_domain->parent_svcnum %>"> +% } + % if ( $communigate % && $part_svc->part_svc_column('max_accounts')->columnflag !~ /^[FA]$/ ) { |