summaryrefslogtreecommitdiff
path: root/httemplate/elements/header-full.html
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2019-05-09 13:22:09 -0400
committerChristopher Burger <burgerc@freeside.biz>2019-05-09 15:17:55 -0400
commit8c4f937a2160abb7d8aa96cdfbbd32e508faafee (patch)
treea8b3c73988bef4402483260253b52d9f78928e90 /httemplate/elements/header-full.html
parente56a0099ed994ad0424943685d4236d6a52f3894 (diff)
RT# 82949 - added the ability to bulk increase package fees (setup and/or recurring) by a percentage
Diffstat (limited to 'httemplate/elements/header-full.html')
-rw-r--r--httemplate/elements/header-full.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/elements/header-full.html b/httemplate/elements/header-full.html
index c73cf0463..5a5db9620 100644
--- a/httemplate/elements/header-full.html
+++ b/httemplate/elements/header-full.html
@@ -207,7 +207,7 @@ Example:
% my ($message, $type) = split /=/, $status_msg;
% $type ||= 'status';
<TABLE CLASS="fsinnerbox" STYLE="background-color:<% $status_color{$type} %>"><TR>
- <TD><IMG SRC="<% $fsurl %>images/tick.png"> <% $message |h %></TD>
+ <TD><IMG SRC="<% $fsurl %><% $status_image{$type} %>"> <% $message |h %></TD>
</TR></TABLE>
% }
<script src="<% $fsurl %>elements/js.cookie.js"></script>
@@ -274,5 +274,6 @@ if ( scalar(@agentnums) == 1 ) {
## status->green(#eeffee), warning->yellow(#fdfd96), error->red(#f97c7c)
my %status_color = ( 'status' => '#eeffee', 'warning' => '#fefbd0', 'error' => '#f97c7c', );
+my %status_image = ( 'status' => 'images/tick.png', 'warning' => 'images/tick.png', 'error' => 'images/error.png', );
</%init>