combine ticket notification scrips, #15353
[freeside.git] / httemplate / elements / tr-td-label.html
1 <TR>
2
3   <TD ALIGN  = "right"
4       VALIGN = "<% $opt{'valign'} || 'top' %>"
5       STYLE  = "<% $style %>"
6       ID     = "<% $opt{label_id} || $opt{id}. '_label0' %>"
7   ><% $required %><% $opt{label} %></TD>
8
9 <%init>
10
11 my %opt = @_;
12
13 my $style = 'padding-top: 3px';
14 $style .= '; '. $opt{'cell_style'}
15   if $opt{'cell_style'};
16
17 my $required = $opt{'required'} ? '<font color="#ff0000">*</font>&nbsp;' : '';
18
19 </%init>