{% load i18n %} {% load l10n %} {% load commadecimal %} {% load dotdecimal %} {% load ibanformat %} {% load money %} {% if payment.state == "created" %}
{% blocktrans trimmed %} We're waiting for an answer from the payment provider regarding your payment. Please contact us if this takes more than a few days. {% endblocktrans %}
{% elif payment.state == "pending" %}{% blocktrans trimmed %} We're waiting for an answer from the payment provider regarding your payment. Please contact us if this takes more than a few days. {% endblocktrans %}
{% else %}{% blocktrans trimmed %}
The payment transaction could not be completed for the following reason:
{% endblocktrans %}
{% if payment_info and payment_info.detail %}
{{ payment_info.detail }}
{% else %}
{% trans "Unknown reason" %}
{% endif %}