{% load base_filters %}
{% blocktrans %}A payment attempt has been made for {{ SITE_GLOBAL_SITEDISPLAYNAME }} {% endblocktrans %}
{% trans "Name:" %} | {{ mp.first_name }} {{ mp.last_name }} | |
{% trans "Company:" %} | {{ mp.company }} | |
{% trans "Payment Amount: " %} | {{ mp.payment_amount|format_currency }} | |
{% trans "Payment Method:" %} | {{ mp.payment_method }} | |
{% trans "Referred By:" %} | {{ mp.referral_source }} | |
{% trans "Comments:" %} | {% blocktrans with c=mp.comments %}{{ c }}{% endblocktrans %} |
{% trans "This is a notice to let you know that a general payment attempt has been made." %}
{% trans "View invoice to verify payment received:" %}
{{ SITE_GLOBAL_SITEURL }}{% url "invoice.view" invoice.id %}
{% trans "To view the payment details, go to:" %} {{ SITE_GLOBAL_SITEURL }}{% url "make_payment.view" mp.id %}
{# time stamp #}{% trans "Time submitted:" %} {% now "D d M Y P" %}