summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-note.html
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2021-03-17 22:16:16 -0700
committerIvan Kohler <ivan@freeside.biz>2021-03-17 22:16:38 -0700
commit96c3f2f68af47a3ac9dca07c51b7b4d5a0930671 (patch)
treea0e229dd6c2cc26d0371a1aa87e35a91b94cb0ef /httemplate/elements/tr-note.html
parent9ebca80fb935533c0d9df44eb8a44a631f834d31 (diff)
contractually guaranteed speed no longer required as of 2020, RT#85671
Diffstat (limited to 'httemplate/elements/tr-note.html')
-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>