X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fsvc_acct%2Fbasics.html;h=1b7d56b237d777af8ef92c16c7e6cac03c9b131c;hb=6f471946b3ae36061cb595ba0657a5b43e7bfd5d;hp=92b9ad7feb5e335e53b1188eb7ff4e489e5bd98a;hpb=5fa9ce1b7c8b934e96a6a2f850a4e788eb76f495;p=freeside.git diff --git a/httemplate/view/svc_acct/basics.html b/httemplate/view/svc_acct/basics.html index 92b9ad7fe..1b7d56b23 100644 --- a/httemplate/view/svc_acct/basics.html +++ b/httemplate/view/svc_acct/basics.html @@ -1,134 +1,165 @@ <% &ntable("#cccccc") %><% &ntable("#cccccc",2) %> -<% include('/view/elements/tr.html', label=>'Service', value=>$part_svc->svc) %> -<% include('/view/elements/tr.html', label=>'Username', value=>$svc_acct->username) %> -<% include('/view/elements/tr.html', label=>'Domain', value=>$domain) %> +<& /view/elements/tr.html, label=>mt('Service'), value=>$part_svc->svc &> +% if ( $opt{cust_svc}->agent_svcid ) { + <& /view/elements/tr.html, label=>mt('Legacy ID'), value=>$opt{cust_svc}->agent_svcid &> +% } +<& /view/elements/tr.html, label=>mt('Username'), value=>$svc_acct->username &> +<& /view/elements/tr.html, label=>mt('Domain'), value=>$domain &> % if ( $opt{'communigate'} ) { - <% include('/view/elements/tr.html', label=>'Aliases', value=>$svc_acct->cgp_aliases) %> + <& /view/elements/tr.html, label=>mt('Aliases'), value=>$svc_acct->cgp_aliases &> %} % if ( $svc_acct->pbxsvc ) { - <% include('/view/elements/tr.html', label=>'PBX', value=>$svc_acct->pbx_title) %> + <& /view/elements/tr.html, label=>mt('PBX'), value=>$svc_acct->pbx_title &> %} % my $show_pw = ''; % my $password = $svc_acct->get_cleartext_password; % if ( $password =~ /^\*\w+\* (.*)$/ ) { % $password = $1; -% $show_pw .= '(login disabled) '; -% } +% $show_pw .= '('. mt('login disabled') .') '; +% } % if ( ! $password % && $svc_acct->_password_encryption ne 'plain' % && $svc_acct->_password % ) % { -% $show_pw .= '('. uc($svc_acct->_password_encryption). ' encrypted)'; +% $show_pw .= '('. uc($svc_acct->_password_encryption). ' '.mt('encrypted').')'; % } elsif ( $conf->exists('showpasswords') ) { -% $show_pw .= '
'. encode_entities($password). '
'; +% $show_pw .= ''. encode_entities($password). ''; % } else { -% $show_pw .= '(hidden)'; -% } -% $password = ''; -<% include('/view/elements/tr.html', label=>'Password', value=>$show_pw) %> - +% $password = ''; +% $show_pw .= '('. mt('hidden') .')'; +% } +% my $psc = $part_svc->part_svc_column('_password'); +% if ( $psc->columnflag eq 'F' and $psc->columnvalue eq '' ) { +% # show nothing +% } else { + + <% mt('Password') %> + + <% $show_pw %> +% my $curuser = $FS::CurrentUser::CurrentUser; +% if ( $curuser->access_right('Provision customer service') or +% ($curuser->access_right('Edit password') and +% ! $part_svc->restrict_edit_password) +% and $psc->columnflag ne 'F' +% ) +% { + <& /elements/change_password.html, + 'svc_acct' => $svc_acct, + 'curr_value' => $password, + &> +% } + + +% } % if ( $conf->exists('security_phrase') ) { - <%include('/view/elements/tr.html', label=>'Security phrase', value=>$svc_acct->sec_phrase)%> + <& /view/elements/tr.html, label=>mt('Security phrase'), value=>$svc_acct->sec_phrase &> % } % if ( $svc_acct->popnum ) { % my $svc_acct_pop = qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum}); - <% include('/view/elements/tr.html', label=>'Access number', value=>$svc_acct_pop->text) %> + <& /view/elements/tr.html, label=>mt('Access number'), value=>$svc_acct_pop->text &> % } +% if ( $svc_acct->sectornum && $conf->exists('svc_acct-tower_sector') ) { +% my $tower_sector = $svc_acct->tower_sector; +% my $link = $tower_sector->ip_addr +% ? '' +% : ''; + <& /view/elements/tr.html, + label => mt('Tower sector'), + value => $link. $tower_sector->description. ($link ? '' : ''), + &> +% } + +<& /view/elements/tr-svc_export_machine.html, + 'svc' => $svc_acct, + 'part_svc' => $part_svc, +&> + % if ($svc_acct->uid ne '') { - <% include('/view/elements/tr.html', label=>'UID', value=>$svc_acct->uid) %> + <& /view/elements/tr.html, label=>mt('UID'), value=>$svc_acct->uid &> % } % if ($svc_acct->gid ne '') { - <% include('/view/elements/tr.html', label=>'GID', value=>$svc_acct->gid) %> + <& /view/elements/tr.html, label=>mt('GID'), value=>$svc_acct->gid &> % } % if ($svc_acct->finger ne '') { - <% include('/view/elements/tr.html', label=>'Real Name', value=>$svc_acct->finger) %> + <& /view/elements/tr.html, label=>mt('Real Name'), value=>$svc_acct->finger &> % } % if ($svc_acct->dir ne '') { - <% include('/view/elements/tr.html', label=>'Home directory', value=>$svc_acct->dir) %> + <& /view/elements/tr.html, label=>mt('Home directory'), value=>$svc_acct->dir &> % } % if ($svc_acct->shell ne '') { - <% include('/view/elements/tr.html', label=>'Shell', value=>$svc_acct->shell) %> + <& /view/elements/tr.html, label=>mt('Shell'), value=>$svc_acct->shell &> % } % if ($svc_acct->quota ne '' && ! $opt{'communigate'} ) { - <% include('/view/elements/tr.html', label=>'Quota', value=>$svc_acct->quota) %> + <& /view/elements/tr.html, label=>mt('Quota'), value=>$svc_acct->quota &> % } elsif ( $opt{'communigate'} ) { - <% include('/view/elements/tr.html', label=>'Mailbox type', value=>$svc_acct->cgp_type) %> - - <% include('/view/elements/tr.html', label=>'Enabled services', - value=>$svc_acct->cgp_accessmodes ) %> - - <% include('/view/elements/tr.html', label=>'Mail storage limit', - value=>$svc_acct->quota ) %> - - <% include('/view/elements/tr.html', label=>'File storage limit', - value=>$svc_acct->file_quota ) %> - - <% include('/view/elements/tr.html', label=>'Number of files limit', - value=>$svc_acct->file_maxnum ) %> - - <% include('/view/elements/tr.html', label=>'File size limit', - value=>$svc_acct->file_maxsize ) %> - - <% include('/view/elements/tr.html', label=>'Message delete method', - value=>$svc_acct->cgp_deletemode ) %> - - <% include('/view/elements/tr.html', label=>'On logout remove trash', - value=>$svc_acct->cgp_emptytrash ) %> - + <& communigate.html, %opt &> % } +<%perl> +# minor false laziness w/ view/svc_broadband.cgi +sub slipip { + my $svc_acct = shift; + my $out = $svc_acct->slipip or return ''; + if ( $out eq '0.0.0.0' or $out eq '0e0' ) { + return '('.mt('Dynamic').''; + } + $out .= ' ('. + include('/elements/popup_link-ping.html', ip => $svc_acct->slipip). + ')'; + if ( my $addr_block = $svc_acct->addr_block ) { + $out .= '
Netmask: ' . $addr_block->NetAddr->mask . + '
Gateway: ' . $addr_block->ip_gateway; + } + $out; +} + + % if ($svc_acct->slipip) { - <% include('/view/elements/tr.html', - label=>'IP address', - value=> ( $svc_acct->slipip eq "0.0.0.0" || $svc_acct->slipip eq '0e0' ) - ? "(Dynamic)" - : $svc_acct->slipip - ) - %> + <& /view/elements/tr.html, + label=>mt('IP address'), + value=> slipip($svc_acct) + &> % } -<% include('usage.html', - 'svc_acct' => $svc_acct, - ) -%> +<& usage.html, 'svc_acct' => $svc_acct &> % foreach my $attribute ( grep /^radius_/, $svc_acct->fields ) { % $attribute =~ /^radius_(.*)$/; % my $pattribute = $FS::raddb::attrib{$1}; - <% include('/view/elements/tr.html', label=>"Radius (reply) $pattribute", + <& /view/elements/tr.html, label=>mt("Radius (reply) [_1]",$pattribute), value=>$svc_acct->getfield($attribute) - ) - %> + &> % } % foreach my $attribute ( grep /^rc_/, $svc_acct->fields ) { % $attribute =~ /^rc_(.*)$/; % my $pattribute = $FS::raddb::attrib{$1}; - <% include('/view/elements/tr.html', label=>"Radius (check) $pattribute", + <& /view/elements/tr.html, label=>mt("Radius (check) [_1]",$pattribute), value=>$svc_acct->getfield($attribute) - ) - %> + &> % } -<% include('/view/elements/tr.html', label=>'RADIUS groups', - value=>join('
', $svc_acct->radius_groups) ) %> +<& /view/elements/tr.html, label=>mt('RADIUS groups'), + value=>join('
', $svc_acct->radius_groups('long_description')) &> + +<& router.html, 'svc_acct' => $svc_acct &> %# Can this be abstracted further? Maybe a library function like %# widget('HTML', 'view', $svc_acct) ? It would definitely make UI