Reverted menu-left-example.png back to original and cleaned up menu-top-example to...
[freeside.git] / httemplate / edit / circuit_type.html
1 <& elements/edit.html,
2   'popup'         => 1,
3   'table'         => 'circuit_type',
4   'name_singular' => 'circuit 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   'typename',
14   { field => 'disabled', type => 'checkbox', value => 'Y' }
15 );
16 my %labels = (
17   'typenum' => '',
18   'typename' => 'Circuit type',
19   'disabled' => 'Disabled'
20 );
21 </%init>