summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-cust_class.html
blob: 94b935acb850dd88243fe98e0cf2cfc0091da561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<% include( '/elements/select-table.html',
                 'table'       => 'cust_class',
                 'name_col'    => 'classname',
                 'value'       => $classnum,
                 'empty_label' => '(none)',
                 'hashref'     => { 'disabled' => '' },
                 %opt,
             )
%>
<%init>

my %opt = @_;
my $classnum = $opt{'curr_value'} || $opt{'value'};

$opt{'records'} = delete $opt{'cust_class'}
  if $opt{'cust_class'};

</%init>