summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-note.html
blob: 8493e5a83122f2a2ee28e0866e5eecdd14871727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<TR>
  <TD COLSPAN=<% $opt{colspan} || 2 %> ALIGN="left" <%$id%>>
    <I><% $opt{value} %></I>
  </TD>
</TR>

<%init>

my %opt = @_;
my $id = 'ID="'.$opt{id}.'"' if $opt{id};

</%init>