{% load i18n %} {% load eventurl %} {% 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 operation and operation.qp_status_msg %} {{ operation.qp_status_code }}: {{ operation.qp_status_msg }} {% else %} {% trans "Unknown reason" %} {% endif %}

{% endif %}