{% load i18n %} {% if 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.error %}
{{ payment_info.message }}
{% else %}
{% trans "Unknown reason" %}
{% endif %}