{% extends "pretixpresale/event/checkout_base.html" %} {% load i18n %} {% load money %} {% load bootstrap3 %} {% load rich_text %} {% block inner %} {% if current_payments %}

{% trans "You already selected the following payment methods:" %}

{% csrf_token %}
{% for p in current_payments %}
{{ p.provider_name }}
{{ p.payment_amount|money:request.event.currency }}
{% endfor %} {% if remaining %}
{% trans "Remaining balance" %}
{% trans "Please select a payment method below." %}
{{ remaining|money:request.event.currency }}
{% endif %}
{% if remaining %}

{% trans "Please select how you want to pay the remaining balance:" %}

{% endif %} {% else %}

{% trans "Please select how you want to pay." %}

{% endif %}
{% csrf_token %} {% if not current_payments or remaining %} {% if event.settings.payment_explanation %} {{ event.settings.payment_explanation|rich_text }} {% endif %}
{% for p in providers %}

{% if show_fees %} {% if p.fee < 0 %}-{% else %}+{% endif %} {{ p.fee|money:event.currency|cut:"-" }} {% endif %}

{% endfor %} {% if not providers %}

{% trans "There are no payment providers enabled." %}

{% if not event.live %}

{% trans "Please go to the payment settings and activate one or more payment providers." %}

{% endif %} {% endif %}
{% endif %}
{% endblock %}