combine ticket notification scrips, #15353
[freeside.git] / httemplate / elements / tr-htmlarea.html
1 <% include('tr-td-label.html', @_ ) %>
2
3   <TD <% $cell_style %>>
4
5     <% include('htmlarea.html', @_ ) %>
6
7   </TD>
8
9 </TR>
10
11 <%init>
12
13 my %opt = @_;
14
15 my $onchange = $opt{'onchange'}
16                  ? 'onChange="'. $opt{'onchange'}. '(this)"'
17                  : '';
18
19 #my $rows = $opt{'rows'} ? 'ROWS="'.$opt{'rows'}.'"' : '';
20 #my $cols = $opt{'cols'} ? 'COLS="'.$opt{'cols'}.'"' : '';
21
22 my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
23 #my $curr_value = $opt{'curr_value'};
24
25 </%init>