summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-td-label.html
blob: 77c048405d775292c526f1cba8b3602da60ba9c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<TR>

  <TD ALIGN="right" VALIGN="top" STYLE="<% $style %>" ID="<% $opt{label_id} || $opt{id}. '_label0' %>">

    <% $opt{label} %>

  </TD>

<%init>

my %opt = @_;

my $style = 'padding-top: 3px';
$style .= '; '. $opt{'cell_style'}
  if $opt{'cell_style'};

</%init>