summaryrefslogtreecommitdiff
path: root/httemplate/edit/circuit_termination.html
blob: 0317bced5ec0fdda570ef1e4ac24ee7721f915d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>