{% load i18n %} {% if provider.method == "card" %}

{% blocktrans trimmed %} The total amount will be withdrawn from your credit card. {% endblocktrans %}

{% trans "Card type" %}
{{ request.session.payment_stripe_card_brand }}
{% trans "Card number" %}
**** **** **** {{ request.session.payment_stripe_card_last4 }}
{% elif provider.method == "sepa_debit" %}

{% blocktrans trimmed %} The total amount will be withdrawn from your bank account. {% endblocktrans %}

{% trans "Banking Institution" %}
{{ request.session.payment_stripe_sepa_debit_bank }}
{% trans "Account number" %}
**** **** **** {{ request.session.payment_stripe_sepa_debit_last4 }}
{% else %}

{% blocktrans trimmed %} After you submitted your order, we will redirect you to the payment service provider to complete your payment. You will then be redirected back here to get your tickets. {% endblocktrans %}

{% trans "Payment method" %}
{{ provider.public_name }}
{% if provider.method == "giropay" %}
{% trans "Account holder" %}
{{ request.session.payment_stripe_giropay_account }}
{% elif provider.method == "bancontact" %}
{% trans "Account holder" %}
{{ request.session.payment_stripe_bancontact_account }}
{% endif %}
{% endif %}