{% if form.fields.swap_type.choices|length > 1 %}
{% blocktrans trimmed with code=order.code %}
Request to swap or cancel your order: {{ code }}
{% endblocktrans %}
{% elif form.fields.swap_type.choices.0.0 == "s" %}
{% blocktrans trimmed with code=order.code %}
Request to swap your order: {{ code }}
{% endblocktrans %}
{% else %}
{% blocktrans trimmed with code=order.code %}
Request to cancel your order: {{ code }}
{% endblocktrans %}
{% endif %}
{% if order.testmode %}
{% trans "TEST MODE" %}
{% endif %}
{% trans "Back to order" %}
{% include "pretixpresale/event/fragment_order_status.html" with order=order event=request.event class="pull-right flip" %}
{% if form.fields.swap_type.choices|length > 1 %}
{% blocktrans trimmed %}
You can request to swap or cancel your order here.
{% endblocktrans %}
{% blocktrans trimmed %}
Swap requests will be approved automatically once a swap partner has been found.
{% endblocktrans %}
{% blocktrans trimmed %}
Cancelation requests will first be approved by the organizers, and will then be processed once then next person on the waiting list has paid for their new order.
{% endblocktrans %}
{% elif form.fields.swap_type.choices.0.0 == "s" %}
{% blocktrans trimmed %}
You can request to swap your order here.
{% endblocktrans %}
{% blocktrans trimmed %}
Swap requests will be approved automatically once a swap partner has been found.
{% endblocktrans %}
{% else %}
{% blocktrans trimmed %}
You can request to cancel your order here.
{% endblocktrans %}
{% blocktrans trimmed %}
Cancelation requests will first be approved by the organizers, and will then be processed once then next person on the waiting list has paid for their new order.
{% endblocktrans %}
{% endif %}