combine ticket notification scrips, #15353
[freeside.git] / httemplate / elements / tr-input-text.html
1 <% include('tr-td-label.html', @_ ) %>
2
3   <TD <% $colspan %> <% $cell_style %> ID="<% $opt{input_id} || $opt{id}.'_input0' %>"><% include('input-text.html', @_ ) %></TD>
4
5 </TR>
6
7 <%init>
8
9 my %opt = @_;
10
11 my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
12
13 my $colspan = $opt{'colspan'} ? 'COLSPAN="'.$opt{'colspan'}.'"' : '';
14
15 </%init>