diff --git a/src/pretix/control/templates/pretixcontrol/order/change.html b/src/pretix/control/templates/pretixcontrol/order/change.html index daf81cf6d8..6d59718990 100644 --- a/src/pretix/control/templates/pretixcontrol/order/change.html +++ b/src/pretix/control/templates/pretixcontrol/order/change.html @@ -102,6 +102,11 @@
{% trans "Date" context "subevent" %} + {% if use_revocation_list %} + + {% endif %}
{{ position.subevent }} @@ -128,6 +133,11 @@
{% trans "Product" %} + {% if use_revocation_list %} + + {% endif %}
{{ position.item }} @@ -210,6 +220,11 @@
{% trans "Validity time" %} + {% if use_revocation_list %} + + {% endif %}
{% if position.valid_from %} diff --git a/src/pretix/control/views/orders.py b/src/pretix/control/views/orders.py index ff8fa4845c..f558126f8a 100644 --- a/src/pretix/control/views/orders.py +++ b/src/pretix/control/views/orders.py @@ -1660,6 +1660,7 @@ class OrderChange(OrderView): ctx['fees'] = self.fees ctx['add_formset'] = self.add_formset ctx['other_form'] = self.other_form + ctx['use_revocation_list'] = self.request.event.ticket_secret_generator.use_revocation_list return ctx def _process_other(self, ocm):