{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load money %} {% block title %} {% trans "Mark refund as done" %} {% endblock %} {% block content %}

{% trans "Mark refund as done" %} {% blocktrans trimmed with order=order.code %} Back to order {{ order }} {% endblocktrans %}

{% csrf_token %}

{% blocktrans trimmed with amount=refund.amount|money:request.event.currency method=refund.payment_provider.verbose_name pending=pending_sum|money:request.event.currency total=order.total|money:request.event.currency %} We received notice that {{ amount }} have been refunded via {{ method }}. If this refund is processed, the order will be underpaid by {{ pending }}. The order total is {{ total }}. {% endblocktrans %}

{% if order.status == "c" or order.positions.count == 0 %}

{% blocktrans trimmed %} Since the order is already canceled, this will not affect its state. {% endblocktrans %}

{% else %}

{% blocktrans trimmed with amount=refund.amount|money:request.event.currency method=refund.payment_provider.verbose_name %} What should happen to the ticket order? {% endblocktrans %}


{% endif %}
{% trans "Cancel" %}
{% endblock %}