diff options
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/make_payment.html')
-rw-r--r-- | fs_selfservice/FS-SelfService/cgi/make_payment.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/make_payment.html b/fs_selfservice/FS-SelfService/cgi/make_payment.html index 5f5bc1c8e..503901edd 100644 --- a/fs_selfservice/FS-SelfService/cgi/make_payment.html +++ b/fs_selfservice/FS-SelfService/cgi/make_payment.html @@ -3,14 +3,21 @@ <FORM NAME="OneTrueForm" METHOD="POST" ACTION="<%=$selfurl%>" onSubmit="document.OneTrueForm.process.disabled=true"> <INPUT TYPE="hidden" NAME="action" VALUE="payment_results"> <TABLE BGCOLOR="#cccccc"> + +<%= +if ($balance > 0) { + $OUT .= <<EOF; <TR> <TH ALIGN="right">Amount Due</TH> <TD COLSPAN=7> <TABLE><TR><TD BGCOLOR="#ffffff"> - <FONT COLOR="#000000">$<%=sprintf("%.2f",$balance)%></FONT> + $money_char$balance </TD></TR></TABLE> </TD> </TR> +EOF +} +%> <%= $tr_amount_fee %> |