diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-22 18:34:27 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-22 18:34:27 -0500 |
commit | c6ef5a3a043c4fafa2f8d21028609f1b9b70eb47 (patch) | |
tree | fef2e1ec82a6aa5eda7742cca0d3e6a8390ee8a3 /httemplate/edit | |
parent | 11ca9a51a76837f1821b2b0e8972c78bf221c6a1 (diff) |
RT#34078: Payment History Report / Statement
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/msg_template.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/edit/msg_template.html b/httemplate/edit/msg_template.html index 7f3824127..ced98fe1f 100644 --- a/httemplate/edit/msg_template.html +++ b/httemplate/edit/msg_template.html @@ -210,6 +210,7 @@ my %substitutions = ( '$company_address'=> 'Our company address', '$company_phonenum' => 'Our phone number', '$selfservice_server_base_url' => 'Base URL of customer self-service', + '$payment_history' => 'List of invoices/payments/credits/refunds', ], 'contact' => [ # duplicate this for shipping '$name' => 'Company and contact name', @@ -322,7 +323,7 @@ my $widget = new HTML::Widgets::SelectLayers( my @hints = @{ $substitutions{$section} }; while(@hints) { my $key = shift @hints; - $html .= qq!\n<TR><TD><A href="javascript:insertHtml('{$key}')">$key</A></TD>!; + $html .= qq!\n<TR><TD STYLE="padding-right: .25em;"><A href="javascript:insertHtml('{$key}')">$key</A></TD>!; $html .= "\n<TD>".shift(@hints).'</TD></TR>'; } $html .= "\n</TABLE>"; |