event refactor, landing on HEAD!
[freeside.git] / httemplate / elements / tr-td-label.html
1 <TR>
2
3   <TD ALIGN="right" VALIGN="top" STYLE="<% $style %>" ID="<% $opt{label_id} || $opt{id}. '_label0' %>">
4
5     <% $opt{label} %>
6
7   </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 </%init>