summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/tr-note.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/httemplate/elements/tr-note.html b/httemplate/elements/tr-note.html
new file mode 100644
index 000000000..8493e5a83
--- /dev/null
+++ b/httemplate/elements/tr-note.html
@@ -0,0 +1,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>