Skip to content
Snippets Groups Projects
Commit 817c91d3 authored by Alexa Valentová's avatar Alexa Valentová
Browse files

Add name & surname to newsletter subscription template

parent 3725a3fa
No related branches found
No related tags found
2 merge requests!1291Release,!1290Add name & surname to newsletter subscription template
Pipeline #20869 passed
...@@ -6,6 +6,8 @@ from wagtail.models.media import Collection ...@@ -6,6 +6,8 @@ from wagtail.models.media import Collection
class SubscribeForm(forms.Form): class SubscribeForm(forms.Form):
name = forms.CharField(max_length=64)
surname = forms.CharField(max_length=64)
email = forms.EmailField() email = forms.EmailField()
confirmed = forms.BooleanField() confirmed = forms.BooleanField()
return_page_id = forms.IntegerField() return_page_id = forms.IntegerField()
......
...@@ -1282,6 +1282,10 @@ class MainHomePageMixin( ...@@ -1282,6 +1282,10 @@ class MainHomePageMixin(
self.ecomail_newsletter_list_tags, self.ecomail_newsletter_list_tags,
self.ecomail_newsletter_list_source, self.ecomail_newsletter_list_source,
self.ecomail_newsletter_list_id, self.ecomail_newsletter_list_id,
custom_data={
"name": form.cleaned_data["name"],
"surname": form.cleaned_data["surname"],
},
) )
messages.success( messages.success(
......
Source diff could not be displayed: it is too large. Options to address this: view the blob.
...@@ -46,6 +46,11 @@ ...@@ -46,6 +46,11 @@
<input type="hidden" name="return_page_id" value="{{ page.id }}"> <input type="hidden" name="return_page_id" value="{{ page.id }}">
<div class="flex gap-2 lg:gap-4 lg:flex-row flex-col">
{% include 'styleguide2/includes/atoms/form_fields/form_input.html' with name="name" placeholder='Jméno' classes='mb-3 md:w-96 lg:!w-[11.5rem]' %}
{% include 'styleguide2/includes/atoms/form_fields/form_input.html' with name="surname" placeholder='Příjmení' classes='mb-3 md:w-96 lg:!w-[11.5rem]' %}
</div>
{% include 'styleguide2/includes/atoms/form_fields/form_input.html' with name="email" placeholder='Tvůj email' classes='mb-3 w-full md:w-96' value='' %} {% include 'styleguide2/includes/atoms/form_fields/form_input.html' with name="email" placeholder='Tvůj email' classes='mb-3 w-full md:w-96' value='' %}
<div class="form__checkbox flex items-center mb-3"> <div class="form__checkbox flex items-center mb-3">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment