diff options
Diffstat (limited to 'httemplate/edit/rate_region.cgi')
-rw-r--r-- | httemplate/edit/rate_region.cgi | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/httemplate/edit/rate_region.cgi b/httemplate/edit/rate_region.cgi index a1c1bcb7d..b50d2daba 100644 --- a/httemplate/edit/rate_region.cgi +++ b/httemplate/edit/rate_region.cgi @@ -11,7 +11,14 @@ %# region info -<% ntable('#cccccc') %> +<TABLE CLASS="fsinnerbox"> + +% if ( $rate_region->agent_regionid ) { + <TR> + <TH ALIGN="right">Legacy #</TH> + <TD><% $rate_region->agent_regionid |h %></TD> + </TR> +% } <TR> <TH ALIGN="right">Region name</TH> @@ -24,10 +31,10 @@ </TR> <TR> - <TD ALIGN="right"> + <TH ALIGN="right"> <B>Prefixes</B> <BR><FONT SIZE="-1">(comma-separated)</FONT> - </TD> + </TH> <TD> <TEXTAREA NAME="npa" WRAP=SOFT><% join(', ', map { $_->npa. (length($_->nxx) ? '-'.$_->nxx : '') } @rate_prefix ) %></TEXTAREA> </TD> |