summaryrefslogtreecommitdiff
path: root/httemplate/edit/pkg_class.html
blob: 2e4e9d1cdb8342915007925da029fd358e019b9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<% include( 'elements/edit.html',
              'name'   => 'Package Class',
              'table'  => 'pkg_class',
              'fields' => [
                            'classname',
                            (scalar(@category)
                              ? { field=>'categorynum', type=>'select-table', 'empty_label'=>'(none)', 'table'=>'pkg_category', 'name_col'=>'categoryname' }
                              : { field=>'categorynum', type=>'hidden' }
                            ),
                            { field=>'disabled', type=>'checkbox', value=>'Y', },
                          ],
              'labels' => { 
                            'classnum'  => 'Class number',
                            'classname' => 'Class name',
                            'disabled'  => 'Disable class',
                          },
              'viewall_dir' => 'browse',
           )
          
%>
<%init>

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Configuration');

my @category = qsearch('pkg_category', { 'disabled' => '' });
</%init>