This commit was generated by cvs2svn to compensate for changes in r10640,
[freeside.git] / httemplate / elements / tr-checkbox.html
1 <% include('tr-td-label.html', @_ ) %>
2
3   <TD <% $style %>>
4     <% include('checkbox.html', @_) %>
5   </TD>
6
7 </TR>
8
9 <%init>
10
11 my %opt = @_;
12
13 my $onchange = $opt{'onchange'}
14                  ? 'onChange="'. $opt{'onchange'}. '(this)"'
15                  : '';
16
17 my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
18
19 </%init>