Compare commits

...

1 Commits

Author SHA1 Message Date
Martin Gross
70c8535b94 Widget: Prefill emaiL_repeat with data-email attribute 2025-02-06 11:56:29 +01:00

View File

@@ -787,6 +787,10 @@ class QuestionsStep(QuestionsViewMixin, CartMixin, TemplateFlowStep):
self.cart_session.get('email', '') or
wd.get('email', '')
),
'email_repeat': (
self.cart_session.get('email_repeat', '') or
wd.get('email', '')
),
'phone': self.cart_session.get('phone', '') or wd.get('phone', None)
}
initial.update(self.cart_session.get('contact_form_data', {}))