{% load base_filters %} {% trans "Greetings:" %}

{% blocktrans with rp=pt.recurring_payment %} A transaction was failed for the recurring payment ({{ rp }}) on {{ site_display_name }}. {% endblocktrans %}

{% trans "Transaction details:" %}

{% trans 'Payment amount' %}:{{ pt.amount|format_currency }}
{% trans 'Result code' %}:{{ pt.result_code }}
{% trans 'Error code' %}:{{ pt.message_code }}
{% trans 'Error text' %}:{{ pt.message_text }}
{% trans 'Transaction date' %}:{{ pt.create_dt|date }}

{% trans "More info for this recurring cycle:" %}

{% trans 'Customer' %}:{{ pt.recurring_payment.user.get_full_name }}({{ pt.recurring_payment.user.email }})
{% trans 'Guid' %}:{{ pt.recurring_payment.guid }}
{% trans 'Recurring cycle start date' %}:{{ pt.recurring_payment_invoice.billing_cycle_start_dt|date }}
{% trans 'Recurring cycle end date' %}:{{ pt.recurring_payment_invoice.billing_cycle_end_dt|date }}

{% trans "Thanks!" %}

{% trans "Time submitted:" %} {% now "D d M Y P" %}