From 6495ef2f0c495e55db9e182f5607d93a5c4adc20 Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 21 Feb 2010 07:32:21 +0000 Subject: communigate, RT#7083 --- httemplate/view/svc_acct/basics.html | 179 +++++++++++++---------------------- httemplate/view/svc_acct/tr.html | 9 ++ 2 files changed, 73 insertions(+), 115 deletions(-) create mode 100644 httemplate/view/svc_acct/tr.html (limited to 'httemplate/view/svc_acct') diff --git a/httemplate/view/svc_acct/basics.html b/httemplate/view/svc_acct/basics.html index 6eddd492d..2b05e78a6 100644 --- a/httemplate/view/svc_acct/basics.html +++ b/httemplate/view/svc_acct/basics.html @@ -1,149 +1,100 @@ <% &ntable("#cccccc") %><% &ntable("#cccccc",2) %> - - Service - <% $part_svc->svc %> - +<% include('tr.html', label=>'Service', value=>$part_svc->svc) %> +<% include('tr.html', label=>'Username', value=>$svc_acct->username) %> +<% include('tr.html', label=>'Domain', value=>$domain) %> - - Username - <% $svc_acct->username %> - - - - Domain - <% $domain %> - +% if ( $opt{'communigate'} ) { + <% include('tr.html', label=>'Aliases', value=>$svc_acct->cgp_aliases) %> +%} % if ( $svc_acct->pbxsvc ) { - - PBX - <% $svc_acct->pbx_title %> - + <% include('tr.html', label=>'PBX', value=>$svc_acct->pbx_title) %> %} - - Password - +% my $show_pw = ''; % my $password = $svc_acct->get_cleartext_password; % if ( $password =~ /^\*\w+\* (.*)$/ ) { -% $password = $1; - (login disabled) +% $password = $1; +% $show_pw .= '(login disabled) '; % } -% if ( !$password and -% $svc_acct->_password_encryption ne 'plain' and -% $svc_acct->_password ) { - (<% uc($svc_acct->_password_encryption) %> encrypted) +% if ( ! $password +% && $svc_acct->_password_encryption ne 'plain' +% && $svc_acct->_password +% ) +% { +% $show_pw .= '('. uc($svc_acct->_password_encryption). ' encrypted)'; % } elsif ( $conf->exists('showpasswords') ) { -
<% encode_entities($password) %>
+% $show_pw .= '
'. encode_entities($password). '
'; % } else { - (hidden) +% $show_pw .= '(hidden)'; % } - - % $password = ''; +<% include('tr.html', label=>'Password', value=>$show_pw) %> + % if ( $conf->exists('security_phrase') ) { -% my $sec_phrase = $svc_acct->sec_phrase; -% - - Security phrase - <% $svc_acct->sec_phrase %> - + <%include('tr.html', label=>'Security phrase', value=>$svc_acct->sec_phrase)%> % } % if ( $svc_acct->popnum ) { -% my $svc_acct_pop = qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum}); - - Access number - <% $svc_acct_pop->text %> - +% my $svc_acct_pop = qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum}); + <% include('tr.html', label=>'Access number', value=>$svc_acct_pop->text) %> % } % if ($svc_acct->uid ne '') { - - UID - <% $svc_acct->uid %> - + <% include('tr.html', label=>'UID', value=>$svc_acct->uid) %> % } % if ($svc_acct->gid ne '') { - - GID - <% $svc_acct->gid %> - + <% include('tr.html', label=>'GID', value=>$svc_acct->gid) %> % } % if ($svc_acct->finger ne '') { - - Real Name - <% $svc_acct->finger %> - + <% include('tr.html', label=>'Real Name', value=>$svc_acct->finger) %> % } % if ($svc_acct->dir ne '') { - - Home directory - <% $svc_acct->dir %> - + <% include('tr.html', label=>'Home directory', value=>$svc_acct->dir) %> % } % if ($svc_acct->shell ne '') { - - Shell - <% $svc_acct->shell %> - + <% include('tr.html', label=>'Shell', value=>$svc_acct->shell) %> % } % if ($svc_acct->quota ne '' && ! $opt{'communigate'} ) { - - Quota - <% $svc_acct->quota %> - + + <% include('tr.html', label=>'Quota', value=>$svc_acct->quota) %> + % } elsif ( $opt{'communigate'} ) { - - Mailbox type - <% $svc_acct->cgp_type %> - + <% include('tr.html', label=>'Mailbox type', value=>$svc_acct->cgp_type) %> - - Enabled services - <% $svc_acct->cgp_accessmodes |h %> - + <% include('tr.html', label=>'Enabled services', + value=>$svc_acct->cgp_accessmodes ) %> - - Mail storage limit - <% $svc_acct->quota %> - + <% include('tr.html', label=>'Mail storage limit', + value=>$svc_acct->quota ) %> - - File storage limit - <% $svc_acct->file_quota %> - + <% include('tr.html', label=>'File storage limit', + value=>$svc_acct->file_quota ) %> - - Number of files limit - <% $svc_acct->file_maxnum %> - + <% include('tr.html', label=>'Number of files limit', + value=>$svc_acct->file_maxnum ) %> - - File size limit - <% $svc_acct->file_maxsize %> - + <% include('tr.html', label=>'File size limit', + value=>$svc_acct->file_maxsize ) %> % } % if ($svc_acct->slipip) { - - IP address - - <% ( $svc_acct->slipip eq "0.0.0.0" || $svc_acct->slipip eq '0e0' ) - ? "(Dynamic)" - : $svc_acct->slipip - %> - - + <% include('tr.html', + label=>'IP address', + value=> ( $svc_acct->slipip eq "0.0.0.0" || $svc_acct->slipip eq '0e0' ) + ? "(Dynamic)" + : $svc_acct->slipip + ) + %> % } <% include('usage.html', @@ -152,27 +103,25 @@ %> % foreach my $attribute ( grep /^radius_/, $svc_acct->fields ) { -% $attribute =~ /^radius_(.*)$/; -% my $pattribute = $FS::raddb::attrib{$1}; - - Radius (reply) <% $pattribute %> - <% $svc_acct->getfield($attribute) %> - - +% $attribute =~ /^radius_(.*)$/; +% my $pattribute = $FS::raddb::attrib{$1}; + <% include('tr.html', label=>"Radius (reply) $pattribute", + value=>$svc_acct->getfield($attribute) + ) + %> % } + % foreach my $attribute ( grep /^rc_/, $svc_acct->fields ) { -% $attribute =~ /^rc_(.*)$/; -% my $pattribute = $FS::raddb::attrib{$1}; - - Radius (check) <% $pattribute %> - <% $svc_acct->getfield($attribute) %> - +% $attribute =~ /^rc_(.*)$/; +% my $pattribute = $FS::raddb::attrib{$1}; + <% include('tr.html', label=>"Radius (check) $pattribute", + value=>$svc_acct->getfield($attribute) + ) + %> % } - - RADIUS groups - <% join('
', $svc_acct->radius_groups) %> - +<% include('tr.html', label=>'RADIUS groups', + value=>join('
', $svc_acct->radius_groups) ) %> %# Can this be abstracted further? Maybe a library function like %# widget('HTML', 'view', $svc_acct) ? It would definitely make UI diff --git a/httemplate/view/svc_acct/tr.html b/httemplate/view/svc_acct/tr.html new file mode 100644 index 000000000..e2ec7d42f --- /dev/null +++ b/httemplate/view/svc_acct/tr.html @@ -0,0 +1,9 @@ + + <% $opt{'label'} %> + <% $opt{'value'} %> + +<%init> + +my %opt = @_; + + -- cgit v1.2.1