Option to ignore old CDRs, RT#81480
[freeside.git] / httemplate / edit / circuit_termination.html
1 <& elements/edit.html,
2   'popup'         => 1,
3   'table'         => 'circuit_termination',
4   'name_singular' => 'termination type',
5   'labels'        => \%labels,
6   'fields'        => \@fields,
7 &>
8 <%init>
9 die "access denied"
10   unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
11
12 my @fields = (
13   'termination',
14   { field => 'disabled', type => 'checkbox', value => 'Y' }
15 );
16 my %labels = (
17   'termnum' => '',
18   'termination' => 'Termination type',
19   'disabled' => 'Disabled'
20 );
21 </%init>