diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-06-16 15:09:04 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-06-16 15:09:04 -0400 |
commit | 0cf46c59eb42596a1823f70e8facf2f457c0e43b (patch) | |
tree | dcd40c8b8077a178d18efe8899e73f83f8a5fbf2 | |
parent | 8980863d1c61a45bd751442df0968b45a861a0fa (diff) |
RT# 76171 - Added Interal Circuit Id to view circuit service page.
-rw-r--r-- | httemplate/view/svc_circuit.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/view/svc_circuit.cgi b/httemplate/view/svc_circuit.cgi index 579ef5150..500993ece 100644 --- a/httemplate/view/svc_circuit.cgi +++ b/httemplate/view/svc_circuit.cgi @@ -59,11 +59,12 @@ my @fields = ( { field => 'due_date', type => 'date' }, 'endpoint_ip_addr', { field => 'endpoint_mac_addr', type => 'mac_addr' }, + 'internal_circuit_id', ); my %labels = ( - circuit_id => 'Circuit ID', + circuit_id => 'Provider Circuit ID', providernum => 'Provider', typenum => 'Circuit type', termnum => 'Termination', @@ -75,6 +76,7 @@ my %labels = ( due_date => 'Due date', endpoint_ip_addr => 'Endpoint IP address', endpoint_mac_addr => 'MAC address', + internal_circuit_id => 'Internal Circuit Id', ); my $self = $m->request_comp; |