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

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

{% trans "Card type" %}
{{ request.session.payment_stripe_brand }}
{% trans "Card number" %}
**** **** **** {{ request.session.payment_stripe_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 %}