combine ticket notification scrips, #15353
[freeside.git] / httemplate / elements / tr-select.html
1 % unless ( $opt{'js_only'} ) {
2
3     <% include('tr-td-label.html', %opt ) %>
4
5       <TD <% $colspan %> <% $style %>>
6 % }
7
8     <% include('select.html', %opt ) %>
9
10 % unless ( $opt{'js_only'} ) {
11       </TD>
12     </TR>
13 % }
14 <%init>
15
16 my %opt = @_;
17
18 my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
19
20 my $colspan = $opt{'colspan'} ? 'COLSPAN="'.$opt{'colspan'}.'"' : '';
21
22 </%init>