Self-service cancellation: Allow to disable auto-refunds

This commit is contained in:
Raphael Michel
2021-09-15 13:43:28 +02:00
parent 848ea999c5
commit 61649ab2b8
4 changed files with 14 additions and 5 deletions

View File

@@ -397,7 +397,7 @@
{% trans "The refund will be issued in form of a gift card that you can use for further purchases." %}
{% elif request.event.settings.cancel_allow_user_paid_refund_as_giftcard == "option" %}
{% trans "The refund can be issued to your original payment method or as a gift card." %}
{% else %}
{% elif request.event.settings.cancel_allow_user_paid_refund_as_giftcard != "manually" %}
{% trans "The refund will be issued to your original payment method." %}
{% endif %}
{% trans "This will invalidate all tickets in this order." %}
@@ -418,7 +418,7 @@
{% trans "The refund will be issued in form of a gift card that you can use for further purchases." %}
{% elif request.event.settings.cancel_allow_user_paid_refund_as_giftcard == "option" %}
{% trans "The refund can be issued to your original payment method or as a gift card." %}
{% else %}
{% elif request.event.settings.cancel_allow_user_paid_refund_as_giftcard != "manually" %}
{% trans "The refund will be issued to your original payment method." %}
{% endif %}
{% trans "This will invalidate all tickets in this order." %}

View File

@@ -84,7 +84,11 @@
{% endif %}
{% if refund_amount %}
{% if request.event.settings.cancel_allow_user_paid_refund_as_giftcard == "force" %}
{% if request.event.settings.cancel_allow_user_paid_refund_as_giftcard == "manually" %}
<strong>
{% trans "The organizer will get in touch with you to clarify the details of your refund." %}
</strong>
{% elif request.event.settings.cancel_allow_user_paid_refund_as_giftcard == "force" %}
<strong>
{% trans "The refund will be issued in form of a gift card that you can use for further purchases." %}
</strong>