stray closing /TABLE in the no-ticket case
[freeside.git] / httemplate / elements / select-cdrbatch.html
1 <% include( '/elements/select-table.html',
2               'table'       => 'cdr_batch',
3               'name_col'    => 'cdrbatch',
4               'curr_value'  => $cdrbatchnum,
5               'empty_label' => '(none)',
6               'pre_options' => [ '__ALL__' => 'All' ],
7           )
8 %>
9 <%init>
10
11 my %opt = @_;
12 my $cdrbatchnum = $opt{'curr_value'}; # || $opt{'value'} necessary?
13
14 </%init>