diff --git a/src/pretix/presale/checkoutflow.py b/src/pretix/presale/checkoutflow.py index 9fab4d0905..c0e1ea0d3e 100644 --- a/src/pretix/presale/checkoutflow.py +++ b/src/pretix/presale/checkoutflow.py @@ -480,6 +480,7 @@ class ConfirmStep(CartMixin, AsyncAction, TemplateFlowStep): ctx['payment_provider'] = self.payment_provider ctx['addr'] = self.invoice_address ctx['confirm_messages'] = self.confirm_messages + ctx['cart_session'] = self.cart_session ctx['contact_info'] = [] responses = contact_form_fields.send(self.event) diff --git a/src/pretix/presale/templates/pretixpresale/event/checkout_confirm.html b/src/pretix/presale/templates/pretixpresale/event/checkout_confirm.html index 970ffd7368..6d23605711 100644 --- a/src/pretix/presale/templates/pretixpresale/event/checkout_confirm.html +++ b/src/pretix/presale/templates/pretixpresale/event/checkout_confirm.html @@ -111,7 +111,7 @@
{% trans "E-mail address" %}
-
{{ request.session.email }}
+
{{ cart_session.email }}
{% for l, v in contact_info %}