X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fview%2Fsvc_phone.cgi;h=75591c747f48ac78ef8a4b723a3f833d6ef81fda;hp=2733e258e23798d109e69b6a365ec90d5de369f0;hb=ad7f49821d40ffd099a45acc32ba91e0e211aede;hpb=d0221fabd4656b3a04251ca6168cc45f54d23574 diff --git a/httemplate/view/svc_phone.cgi b/httemplate/view/svc_phone.cgi index 2733e258e..75591c747 100644 --- a/httemplate/view/svc_phone.cgi +++ b/httemplate/view/svc_phone.cgi @@ -1,16 +1,10 @@ <% include('elements/svc_Common.html', 'table' => 'svc_phone', - 'fields' => [qw( - countrycode - phonenum - pbx_title - sip_password - pin - phone_name - )], + 'fields' => \@fields, 'labels' => { 'countrycode' => 'Country code', 'phonenum' => 'Phone number', + 'domain' => 'Domain', 'pbx_title' => 'PBX', 'sip_password' => 'SIP password', 'pin' => 'PIN', @@ -21,10 +15,36 @@ %> <%init> +my $conf = new FS::Conf; +my $countrydefault = $conf->config('countrydefault') || 'US'; + +my @fields = qw( countrycode phonenum ); +push @fields, 'domain' if $conf->exists('svc_phone-domain'); +push @fields, qw( pbx_title sip_password pin phone_name ); + my $html_foot = sub { my $svc_phone = shift; ### + # E911 Info + ### + + my $e911 = + 'E911 Information'. + &ntable("#cccccc"). ''. ntable("#cccccc",2). + 'Location'. + ''. + $svc_phone->location_label( 'join_string' => '
', + 'double_space' => '   ', + 'escape_function' => \&encode_entities, + 'countrydefault' => $countrydefault, + ). + ''. + ''. + '
' + ; + + ### # Devices ### @@ -123,6 +143,7 @@ my $html_foot = sub { # concatenate & return ### + $e911. $devices. join(' | ', @links ). '
'. join(' | ', @ilinks). '
';