diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-11-13 12:45:15 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-11-13 12:45:15 -0500 |
commit | 2554b11e48a7ec4567bf89f9a48f7a83ec925eea (patch) | |
tree | 4672d600d43e1c9f9874845eee3b7546ce22d33f /httemplate/elements/tr-td-label.html | |
parent | 63da5ded686cf29353617d4c51385da4906b749b (diff) |
RT# 77470 - added reason option to advanced package report with suspended status is selected. Also added links to suspend and unsuspend when status active or suspended is used.
Diffstat (limited to 'httemplate/elements/tr-td-label.html')
-rw-r--r-- | httemplate/elements/tr-td-label.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/elements/tr-td-label.html b/httemplate/elements/tr-td-label.html index 1d96cf307..80dddaa47 100644 --- a/httemplate/elements/tr-td-label.html +++ b/httemplate/elements/tr-td-label.html @@ -6,7 +6,7 @@ Note that this puts the 'label' argument into the document verbatim, with no escaping or localization. </%doc> -<TR> +<TR id="<% $opt{'id'} %>_row" <% $row_style %>> <TH ALIGN = "right" VALIGN = "<% $opt{'valign'} || 'top' %>" @@ -22,6 +22,8 @@ my $style = 'padding-top: 3px'; $style .= '; '. $opt{'cell_style'} if $opt{'cell_style'}; +my $row_style = 'style="visibility:collapse;"' if $opt{'hide_onload'}; + my $required = $opt{'required'} ? '<font color="#ff0000">*</font> ' : ''; </%init> |