diff options
author | Ivan Kohler <ivan@freeside.biz> | 2021-03-17 22:16:16 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2021-03-17 22:16:16 -0700 |
commit | 5bf0ab2d129310be344a9654c14796c7424138a8 (patch) | |
tree | 78ddb68d1a60f8d455640e0681df6a8cbaf92b31 /httemplate/elements | |
parent | 20961c94ea06ad3aa71fad2bd7f6903f83f02ebc (diff) |
contractually guaranteed speed no longer required as of 2020, RT#85671
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/tr-note.html | 12 |
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> |