{% 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 %}

{% elif payment.state == "created" and payment_info.status == "requires_action" %}

{% blocktrans trimmed %} You need to confirm your payment. Please click the link below to do so or start a new payment. {% endblocktrans %}

{% trans "Confirm payment" %}

{% elif payment.state == "created" and payment.provider == "stripe_wechatpay" %}

{% blocktrans trimmed %} Please scan the barcode below to complete your WeChat payment. Once you have completed your payment, you can refresh this page. {% 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 %}

{% endif %}