{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load eventurl %} {% load rich_text %} {% load money %} {% block title %}{% trans "Change payment method" %}{% endblock %} {% block custom_header %} {{ block.super }} {% include "pretixpresale/event/fragment_walletdetection_head.html" %} {% endblock %} {% block content %}

{% blocktrans trimmed with code=order.code %} Choose payment method: {{ code }} {% endblocktrans %}

{% if show_fees %}

{% blocktrans trimmed %} Please note: If you change your payment method, your order total will change by the amount displayed to the right of each method. {% endblocktrans %}

{% endif %}
{% csrf_token %} {% if event.settings.payment_explanation %} {{ event.settings.payment_explanation|rich_text }} {% endif %}
{% for p in providers %}
{{ p.form }}
{% empty %}
{% trans "There are no alternative payment providers available for this order." %}
{% endfor %}
{% if providers %} {% endif %}
{% endblock %}