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

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


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