diff --git a/src/pretix/presale/checkoutflow.py b/src/pretix/presale/checkoutflow.py index 9a127b534..d76fd119f 100644 --- a/src/pretix/presale/checkoutflow.py +++ b/src/pretix/presale/checkoutflow.py @@ -521,7 +521,9 @@ class ConfirmStep(CartMixin, AsyncAction, TemplateFlowStep): ctx['confirm_messages'] = self.confirm_messages ctx['cart_session'] = self.cart_session - ctx['contact_info'] = [] + ctx['contact_info'] = [ + (_('E-mail'), self.cart_session.get('contact_form_data', {}).get('email')), + ] responses = contact_form_fields.send(self.event, request=self.request) for r, response in sorted(responses, key=lambda r: str(r[0])): for key, value in response.items():