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
28
29
30
31
32
33
|
<% include( 'elements/edit.html',
'name_singular' => 'Package Category',
'table' => 'pkg_category',
'fields' => [
'categoryname',
'weight',
{ field=>'ticketing_queueid',
type =>'select-ticketing_queueid',
post_options => [ -1 => 'Agent-specific queue' ],
},
{ field=>'condense', type=>'checkbox', value=>'Y' },
{ field=>'disabled', type=>'checkbox', value=>'Y' },
],
'labels' => {
'categorynum' => 'Category number',
'categoryname' => 'Category name',
'weight' => 'Weight',
'ticketing_queueid' => 'Appointment ticketing queue',
'condense' => 'Collapse identical items to one',
'disabled' => 'Disable category',
},
'viewall_dir' => 'browse',
%opt,
)
%>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
my %opt = @_;
</%init>
|