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

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

{% 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 %}

{% csrf_token %}
{% for p in providers %}

{% empty %}
{% trans "There are no alternative payment providers available for this order." %}
{% endfor %}
{% if providers %} {% endif %}
{% endblock %}