svc_fiber, #35260
[freeside.git] / httemplate / edit / fiber_olt.html
1 <& elements/edit.html,
2   'popup'         => 1,
3   'table'         => 'fiber_olt',
4   'name_singular' => 'OLT',
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   'oltname',
14   'serial',
15   { field => 'disabled', type => 'checkbox', value => 'Y' }
16 );
17
18 my %labels = (
19   'oltnum' => '',
20   'oltname' => 'Name',
21   'serial'  => 'Serial',
22   'disabled' => 'Disabled',
23 );
24 </%init>