diff options
Diffstat (limited to 'httemplate/browse/agent.cgi')
-rwxr-xr-x | httemplate/browse/agent.cgi | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/httemplate/browse/agent.cgi b/httemplate/browse/agent.cgi index fc9ce5413..b9190ecb5 100755 --- a/httemplate/browse/agent.cgi +++ b/httemplate/browse/agent.cgi @@ -38,6 +38,10 @@ full offerings (via their type).<BR><BR> <TH CLASS="grid" BGCOLOR="#cccccc">Ticketing</TH> % } +% if ( $conf->config('currencies') ) { + <TH CLASS="grid" BGCOLOR="#cccccc">Currencies</TH> +% } + <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1>Payment Gateway Overrides</FONT></TH> <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1>Configuration Overrides</FONT></TH> </TR> @@ -361,19 +365,23 @@ Unused <BR><A HREF="<%$p%>edit/prepay_credit.cgi?agentnum=<% $agent->agentnum %>">Generate cards</A> </TD> -% if ( $conf->config('ticket_system') ) { - +% if ( $conf->config('ticket_system') ) { <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"> -% if ( $agent->ticketing_queueid ) { - - Queue: <% $agent->ticketing_queueid %>: <% $agent->ticketing_queue %><BR> +% if ( $agent->ticketing_queueid ) { + Queue: <% $agent->ticketing_queueid %>: + <% $agent->ticketing_queue %> + <BR> +% } + </TD> % } +% if ( $conf->config('currencies') ) { + <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"> + <% join('<BR>', sort keys %{ $agent->agent_currency_hashref } ) %> </TD> % } - <TD CLASS="inv" BGCOLOR="<% $bgcolor %>"> <TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0> % foreach my $override ( |