summaryrefslogtreecommitdiff
path: root/httemplate/edit/circuit_termination.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2014-11-27 16:12:56 -0800
committerMark Wells <mark@freeside.biz>2014-11-27 16:12:56 -0800
commit10614457fd7db63cbcc0bf9bfeebbbb99258eaa3 (patch)
tree27c9c1189627dda1ed9d0559376b761f6d02464f /httemplate/edit/circuit_termination.html
parent2d5acabf71d46aa469a6867f294706242c82db98 (diff)
svc_circuit, #23879, #25933, #30830
Diffstat (limited to 'httemplate/edit/circuit_termination.html')
-rw-r--r--httemplate/edit/circuit_termination.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/httemplate/edit/circuit_termination.html b/httemplate/edit/circuit_termination.html
new file mode 100644
index 000000000..0317bced5
--- /dev/null
+++ b/httemplate/edit/circuit_termination.html
@@ -0,0 +1,21 @@
+<& elements/edit.html,
+ 'popup' => 1,
+ 'table' => 'circuit_termination',
+ 'name_singular' => 'termination type',
+ 'labels' => \%labels,
+ 'fields' => \@fields,
+&>
+<%init>
+die "access denied"
+ unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
+
+my @fields = (
+ 'termination',
+ { field => 'disabled', type => 'checkbox', value => 'Y' }
+);
+my %labels = (
+ 'termnum' => '',
+ 'termination' => 'Termination type',
+ 'disabled' => 'Disabled'
+);
+</%init>