13 lines
455 B
Cheetah
13 lines
455 B
Cheetah
[---] -/subject
|
|
{{ _("Your invoice to {0} has been rejected - Liberapay", addressee_name) }}
|
|
|
|
[---] text/html
|
|
<p>{{ _(
|
|
"Your request for a payment of {amount} from {addressee_name} has been rejected."
|
|
, addressee_name=addressee_name, amount=LegacyMoney(invoice.amount)
|
|
) }}</p>
|
|
|
|
<p>{{ _("Reason: “{0}”", rejection_message) }}</p>
|
|
|
|
<p><a href="{{ participant.url('invoices/%s' % invoice.id, log_in='no') }}">{{ _("View the invoice") }}</a></p>
|