blob: e47cfe48c90b4a7236f739e0e9df9a85017cc397 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<% include( '/elements/select-table.html',
'table' => 'pkg_class',
'name_col' => 'classname',
'value' => $classnum,
'empty_label' => '(none)',
'hashref' => \%hash,
%opt,
)
%>
<%init>
my %opt = @_;
my $classnum = $opt{'curr_value'} || $opt{'value'};
my %hash = ();
$hash{'disabled'} = '' unless $opt{'showdisabled'};
$opt{'records'} = delete $opt{'pkg_class'}
if $opt{'pkg_class'};
</%init>
|