{% load i18n %} {% load ibanformat %} {% load money %} {% load dotdecimal %} {% load commadecimal %} {% if payment.state == "pending" %} {% if payment_info.smart_transaction.payment_instructions %}
{% blocktrans trimmed %} Please transfer the full amount to the following bank account: {% endblocktrans %}
{% trans "Account holder" %}: {{ payment_info.smart_transaction.payment_instructions.owner }}
{% trans "IBAN" %}: {{ payment_info.smart_transaction.payment_instructions.iban|ibanformat }}
{% trans "BIC" %}: {{ payment_info.smart_transaction.payment_instructions.bic }}
{% trans "Bank name" %}: {{ payment_info.smart_transaction.payment_instructions.bankname }}
{% trans "Amount:" %} {{ payment.amount|money:event.currency }}
{% trans "Reference code (important):" %} {{ payment_info.smart_transaction.payment_instructions.purpose }}
{% trans "After you sent the bank transfer, you can close this window. We will send you an email as soon as we received your payment." %}
{% 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 %}
{% endif %} {% else %}{% blocktrans trimmed %}
The payment transaction could not be completed for the following reason:
{% endblocktrans %}
{% if payment_info and payment_info.ErrorMessage %}
{{ payment_info.ErrorMessage }}
{% else %}
{% trans "Unknown reason" %}
{% endif %}