forked from CGM_Public/pretix_original
Self-service cancellation: Allow to disable auto-refunds
This commit is contained in:
@@ -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." %}
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user