X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=httemplate%2Fconfig%2Fconfig-view.cgi;h=e7cadbe9938e78e4be6352179641e12dcf0264e9;hb=4665d5af02f915679207a369222472a25e137c9d;hp=08f6c1020b8e70ee0f210fbe5987978a78a1f4b3;hpb=1958c28884c750ca37979f19bec3e3daf0386731;p=freeside.git diff --git a/httemplate/config/config-view.cgi b/httemplate/config/config-view.cgi index 08f6c1020..e7cadbe99 100644 --- a/httemplate/config/config-view.cgi +++ b/httemplate/config/config-view.cgi @@ -207,12 +207,20 @@ Click on a configuration value to change it. +% if ( $i->multiple ) { + <% join('
', + map { $_ . ": " . &{ $i->option_sub }($_) } + $conf->config($i->key,$agentnum) + ) + %> +% } else { <% $conf->config($i->key, $agentnum) %>: <% &{ $i->option_sub }( $conf->config($i->key, $agentnum) ) %> +% } -% } elsif ( $type =~ /^select-(part_svc|part_pkg|pkg_class)$/ ) { +% } elsif ( $type =~ /^select-(part_svc|part_pkg|pkg_class|agent)$/ ) { % % my $table = $1; % my $namecol = $namecol{$table}; @@ -318,6 +326,7 @@ my %namecol = ( 'part_svc' => 'svc', 'part_pkg' => 'pkg', 'pkg_class' => 'classname', + 'agent' => 'agent', ); <%init> @@ -349,7 +358,7 @@ my @config_items = grep { $page_agent ? $_->per_agent : 1 } my @deleteable = qw( invoice_latexreturnaddress invoice_htmlreturnaddress ); my %deleteable = map { $_ => 1 } @deleteable; -my @sections = qw(required billing invoicing UI self-service username password session shell BIND ); +my @sections = qw(required billing invoicing notification UI self-service ticketing username password session shell BIND telephony ); push @sections, '', 'deprecated'; my %section_items = ();