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

Finish ecomail NL integration, add tracking codes, add uniweb embadded forms

parent 140b2420
No related branches found
No related tags found
2 merge requests!1280Release,!1279Finish ecomail NL integration, add tracking codes, add uniweb embadded forms
Pipeline #20842 passed
Showing
with 450 additions and 56 deletions
# Generated by Django 5.0.7 on 2025-03-24 20:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('district', '0317_alter_districtarticlepage_content_and_more'),
]
operations = [
migrations.AddField(
model_name='districthomepage',
name='ecomail_newsletter_list_source',
field=models.CharField(blank=True, default='web-nl-generic', help_text='Není nutno měnit.', null=True, verbose_name='Ecomail newsletter zdroj'),
),
]
...@@ -49,6 +49,7 @@ from shared.blocks import ( ...@@ -49,6 +49,7 @@ from shared.blocks import (
from shared.const import RICH_TEXT_DEFAULT_FEATURES from shared.const import RICH_TEXT_DEFAULT_FEATURES
from shared.models import ( from shared.models import (
CustomLogoMixin, CustomLogoMixin,
EcomailNewsletterMixin,
ExtendedMetadataPageMixin, ExtendedMetadataPageMixin,
MainArticlePageMixin, MainArticlePageMixin,
MainArticlesPageMixin, MainArticlesPageMixin,
...@@ -82,7 +83,9 @@ CONTENT_BLOCKS = DEFAULT_CONTENT_BLOCKS + [ ...@@ -82,7 +83,9 @@ CONTENT_BLOCKS = DEFAULT_CONTENT_BLOCKS + [
] ]
class DistrictHomePage(CustomLogoMixin, CalendarMixin, MainHomePageMixin): class DistrictHomePage(
CustomLogoMixin, CalendarMixin, EcomailNewsletterMixin, MainHomePageMixin
):
### FIELDS ### FIELDS
# Main section # Main section
...@@ -129,20 +132,6 @@ class DistrictHomePage(CustomLogoMixin, CalendarMixin, MainHomePageMixin): ...@@ -129,20 +132,6 @@ class DistrictHomePage(CustomLogoMixin, CalendarMixin, MainHomePageMixin):
help_text="ID newsletteru z Mailtrainu. Po vyplnění se formulář pro odběr newsletteru zobrazí na úvodní stránce a na stránce s kontakty.", help_text="ID newsletteru z Mailtrainu. Po vyplnění se formulář pro odběr newsletteru zobrazí na úvodní stránce a na stránce s kontakty.",
) )
ecomail_newsletter_list_id = models.IntegerField(
"ID Ecomail newsletteru",
blank=True,
null=True,
)
ecomail_newsletter_list_tags = models.CharField(
"Tagy k přidání novým odběratelům na Ecomailu",
max_length=128,
blank=True,
null=True,
help_text="Oddělte čárkou, například 'Tag1,Tag2,Tag3'. Bez mezer.",
)
newsletter_description = models.CharField( newsletter_description = models.CharField(
"Popis newsletteru", "Popis newsletteru",
max_length=250, max_length=250,
...@@ -212,6 +201,7 @@ class DistrictHomePage(CustomLogoMixin, CalendarMixin, MainHomePageMixin): ...@@ -212,6 +201,7 @@ class DistrictHomePage(CustomLogoMixin, CalendarMixin, MainHomePageMixin):
FieldPanel("newsletter_list_id"), FieldPanel("newsletter_list_id"),
FieldPanel("ecomail_newsletter_list_id"), FieldPanel("ecomail_newsletter_list_id"),
FieldPanel("ecomail_newsletter_list_tags"), FieldPanel("ecomail_newsletter_list_tags"),
FieldPanel("ecomail_newsletter_list_source"),
], ],
"Formulář pro odběr newsletteru", "Formulář pro odběr newsletteru",
), ),
......
# Generated by Django 5.0.7 on 2025-03-24 20:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('main', '0155_alter_mainarticlepage_content_and_more'),
]
operations = [
migrations.AddField(
model_name='mainhomepage',
name='ecomail_newsletter_list_source',
field=models.CharField(blank=True, default='web-nl-generic', help_text='Není nutno měnit.', null=True, verbose_name='Ecomail newsletter zdroj'),
),
]
...@@ -26,6 +26,7 @@ from shared import blocks as shared_blocks ...@@ -26,6 +26,7 @@ from shared import blocks as shared_blocks
from shared.const import RICH_TEXT_DEFAULT_FEATURES from shared.const import RICH_TEXT_DEFAULT_FEATURES
from shared.models import ( # MenuMixin, from shared.models import ( # MenuMixin,
ArticleMixin, ArticleMixin,
EcomailNewsletterMixin,
ExtendedMetadataHomePageMixin, ExtendedMetadataHomePageMixin,
ExtendedMetadataPageMixin, ExtendedMetadataPageMixin,
MainArticlePageMixin, MainArticlePageMixin,
...@@ -47,7 +48,7 @@ from . import blocks ...@@ -47,7 +48,7 @@ from . import blocks
from .forms import CareerSubmissionForm, MainArticlesPageForm from .forms import CareerSubmissionForm, MainArticlesPageForm
class MainHomePage(MainHomePageMixin): class MainHomePage(EcomailNewsletterMixin, MainHomePageMixin):
# menu # menu
popout_button_name = models.CharField( popout_button_name = models.CharField(
...@@ -66,20 +67,6 @@ class MainHomePage(MainHomePageMixin): ...@@ -66,20 +67,6 @@ class MainHomePage(MainHomePageMixin):
use_json_field=True, use_json_field=True,
) )
ecomail_newsletter_list_id = models.IntegerField(
"ID Ecomail newsletteru",
blank=True,
null=True,
)
ecomail_newsletter_list_tags = models.CharField(
"Tagy k přidání novým odběratelům na Ecomailu",
max_length=128,
blank=True,
null=True,
help_text="Oddělte čárkou, například 'Tag1,Tag2,Tag3'. Bez mezer.",
)
# content # content
content = StreamField( content = StreamField(
[ [
...@@ -149,6 +136,7 @@ class MainHomePage(MainHomePageMixin): ...@@ -149,6 +136,7 @@ class MainHomePage(MainHomePageMixin):
+ [ + [
FieldPanel("ecomail_newsletter_list_id"), FieldPanel("ecomail_newsletter_list_id"),
FieldPanel("ecomail_newsletter_list_tags"), FieldPanel("ecomail_newsletter_list_tags"),
FieldPanel("ecomail_newsletter_list_source"),
], ],
heading="Nastavení", heading="Nastavení",
), ),
......
# Generated by Django 5.0.7 on 2025-03-24 16:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('make_a_wish', '0007_makeawishroot_matomo_id'),
]
operations = [
migrations.AddField(
model_name='makeawishroot',
name='ecomail_newsletter_list_id',
field=models.IntegerField(blank=True, null=True, verbose_name='ID Ecomail newsletteru'),
),
migrations.AddField(
model_name='makeawishroot',
name='ecomail_newsletter_list_tags',
field=models.CharField(blank=True, help_text="Oddělte čárkou, například 'Tag1,Tag2,Tag3'. Bez mezer.", max_length=128, null=True, verbose_name='Tagy k přidání novým odběratelům na Ecomailu'),
),
]
# Generated by Django 5.0.7 on 2025-03-24 20:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('make_a_wish', '0008_makeawishroot_ecomail_newsletter_list_id_and_more'),
]
operations = [
migrations.AddField(
model_name='makeawishroot',
name='ecomail_newsletter_list_source',
field=models.CharField(blank=True, default='web-nl-generic', help_text='Není nutno měnit.', null=True, verbose_name='Ecomail newsletter zdroj'),
),
]
# Generated by Django 5.0.7 on 2025-03-25 16:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('make_a_wish', '0009_makeawishroot_ecomail_newsletter_list_source'),
]
operations = [
migrations.AddField(
model_name='makeawishroot',
name='fbevents_id',
field=models.CharField(blank=True, max_length=64, null=True, verbose_name='Interní ID 1'),
),
]
...@@ -7,7 +7,12 @@ from wagtail.fields import StreamField ...@@ -7,7 +7,12 @@ from wagtail.fields import StreamField
from wagtail.models import Page from wagtail.models import Page
from wagtailmetadata.models import MetadataPageMixin from wagtailmetadata.models import MetadataPageMixin
from shared.models import ExtendedMetadataHomePageMixin from shared.models import (
EcomailNewsletterMixin,
ExtendedMetadataHomePageMixin,
FbEventsMixin,
)
from shared.utils import subscribe_to_ecomail_newsletter
from shared_legacy.utils import make_promote_panels from shared_legacy.utils import make_promote_panels
from .blocks import CommonWishBlock, StatBlock, TourDateBlock from .blocks import CommonWishBlock, StatBlock, TourDateBlock
...@@ -20,7 +25,12 @@ class MakeAWIshFormField(AbstractFormField): ...@@ -20,7 +25,12 @@ class MakeAWIshFormField(AbstractFormField):
class MakeAWishRoot( class MakeAWishRoot(
AbstractForm, ExtendedMetadataHomePageMixin, MetadataPageMixin, Page AbstractForm,
ExtendedMetadataHomePageMixin,
MetadataPageMixin,
EcomailNewsletterMixin,
FbEventsMixin,
Page,
): ):
main_text = models.TextField(verbose_name="Hlavní text") main_text = models.TextField(verbose_name="Hlavní text")
success_text = models.TextField(verbose_name="Text po odeslání formuláře") success_text = models.TextField(verbose_name="Text po odeslání formuláře")
...@@ -73,7 +83,14 @@ class MakeAWishRoot( ...@@ -73,7 +83,14 @@ class MakeAWishRoot(
InlinePanel("form_fields", label="Formulář - neměnit!!"), InlinePanel("form_fields", label="Formulář - neměnit!!"),
] ]
promote_panels = make_promote_panels() + [FieldPanel("matomo_id")] promote_panels = make_promote_panels() + [
FieldPanel("matomo_id"),
FieldPanel("ecomail_newsletter_list_id"),
FieldPanel("ecomail_newsletter_list_tags"),
FieldPanel("ecomail_newsletter_list_source"),
]
advanced_panels = [FieldPanel("fbevents_id")]
submissions_panels = [FormSubmissionsPanel()] submissions_panels = [FormSubmissionsPanel()]
...@@ -82,8 +99,43 @@ class MakeAWishRoot( ...@@ -82,8 +99,43 @@ class MakeAWishRoot(
ObjectList(content_panels, heading="Obsah"), ObjectList(content_panels, heading="Obsah"),
ObjectList(promote_panels, heading="Metadata"), ObjectList(promote_panels, heading="Metadata"),
ObjectList(submissions_panels, heading="Data z formuláře"), ObjectList(submissions_panels, heading="Data z formuláře"),
ObjectList(advanced_panels, heading="Pokročilé"),
] ]
) )
def process_form_submission(self, form):
# Custom code on form submission
cleaned_data = form.cleaned_data
if cleaned_data["e_mail"] and self.ecomail_newsletter_list_id:
name_and_surname = cleaned_data["jmeno_a_prijmeni"]
name_and_surname = name_and_surname.split(" ")
name = ""
surname = ""
if len(name_and_surname) > 1:
name = name_and_surname[0]
surname = " ".join(name_and_surname[1:])
else:
name = name_and_surname[0]
custom_data = {
"name": name,
}
if surname != "":
custom_data["surname"] = surname
subscribe_to_ecomail_newsletter(
cleaned_data["e_mail"],
self.ecomail_newsletter_list_id,
self.ecomail_newsletter_list_tags,
self.ecomail_newsletter_list_source,
custom_data,
)
super().process_form_submission(form)
class Meta: class Meta:
verbose_name = "Máte přání" verbose_name = "Máte přání"
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
{% comment %}quick dirty fix{% endcomment %} {% comment %}quick dirty fix{% endcomment %}
<title>Máte přání?</title> <title>Máte přání?</title>
{% if page.root_page.matomo_id %} {% if page.matomo_id %}
{% include "shared/matomo_snippet.html" with matomo_id=page.root_page.matomo_id %} {% include "shared/matomo_snippet.html" with matomo_id=page.root_page.matomo_id %}
{% endif %} {% endif %}
{% endblock %} {% endblock %}
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<div class="container--wide grid grid-cols-1 xl:grid-cols-2 gap-8"> <div class="container--wide grid grid-cols-1 xl:grid-cols-2 gap-8">
<div> <div>
{% block top_content %} {% block top_content %}
<div class="prose prose-black text-2xl xl:text-3xl mb-8 xl:!w-[115%%]" style="margin-top: -30px"> <div class="prose prose-black text-2xl xl:text-3xl mb-8 xl:!w-[115%]" style="margin-top: -30px">
{{ page.main_text }} {{ page.main_text }}
</div> </div>
......
...@@ -62,6 +62,45 @@ logger = logging.getLogger(__name__) ...@@ -62,6 +62,45 @@ logger = logging.getLogger(__name__)
# --- BEGIN Metadata mixins --- # --- BEGIN Metadata mixins ---
class FbEventsMixin(models.Model):
fbevents_id = models.CharField(
"Interní ID 1",
max_length=64,
blank=True,
null=True,
)
class Meta:
abstract = True
class EcomailNewsletterMixin(models.Model):
ecomail_newsletter_list_id = models.IntegerField(
"ID Ecomail newsletteru",
blank=True,
null=True,
)
ecomail_newsletter_list_tags = models.CharField(
"Tagy k přidání novým odběratelům na Ecomailu",
max_length=128,
blank=True,
null=True,
help_text="Oddělte čárkou, například 'Tag1,Tag2,Tag3'. Bez mezer.",
)
ecomail_newsletter_list_source = models.CharField(
"Ecomail newsletter zdroj",
blank=True,
null=True,
default="web-nl-generic",
help_text="Není nutno měnit.",
)
class Meta:
abstract = True
class ExtendedMetadataHomePageMixin(models.Model): class ExtendedMetadataHomePageMixin(models.Model):
"""Use for site home page to define metadata title suffix. """Use for site home page to define metadata title suffix.
...@@ -1246,6 +1285,7 @@ class MainHomePageMixin( ...@@ -1246,6 +1285,7 @@ class MainHomePageMixin(
form.cleaned_data["email"], form.cleaned_data["email"],
self.ecomail_newsletter_list_id, self.ecomail_newsletter_list_id,
self.ecomail_newsletter_list_tags, self.ecomail_newsletter_list_tags,
self.ecomail_newsletter_list_source,
) )
messages.success( messages.success(
......
...@@ -37,6 +37,22 @@ ...@@ -37,6 +37,22 @@
{{ page.root_page.custom_css }} {{ page.root_page.custom_css }}
</style> </style>
{% endif %} {% endif %}
{% if page.root_page.fbevents_id %}
<!-- Fuck you -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '{{ page.root_page.fbevents_id }}');
fbq('track', 'PageView');
</script>
{% endif %}
</head> </head>
<body class="__{{ page.content_type.model }}"> <body class="__{{ page.content_type.model }}">
......
...@@ -70,13 +70,24 @@ def subscribe_to_newsletter(email, list_id): ...@@ -70,13 +70,24 @@ def subscribe_to_newsletter(email, list_id):
return response return response
def subscribe_to_ecomail_newsletter(email, list_id: int, categories: str): def subscribe_to_ecomail_newsletter(
email: str,
list_id: int,
categories: str,
source: str,
custom_data: dict | None = None,
):
if custom_data is None:
custom_data = {}
split_categories = categories.split(",") if categories is not None else [] split_categories = categories.split(",") if categories is not None else []
data = { data = {
"subscriber_data": { "subscriber_data": {
"email": email, "email": email,
"source": source,
"tags": split_categories, "tags": split_categories,
**custom_data,
} }
} }
......
...@@ -55,6 +55,19 @@ class PeopleGroupListBlock(StructBlock): ...@@ -55,6 +55,19 @@ class PeopleGroupListBlock(StructBlock):
# New blocks # New blocks
class UniwebSubpageFormBlock(StructBlock):
page = PageChooserBlock(
page_type=["uniweb.UniwebFormPage"],
label="Formulářová stránka",
)
class Meta:
template = "uniweb/blocks/embedded_subpage_form.html"
icon = "list-ul"
label = "Obsah formuláře (viz. dokumentace form. stránek)"
group = "3. Ostatní"
class PersonCustomPositionBlock(PersonCustomPositionBlockMixin): class PersonCustomPositionBlock(PersonCustomPositionBlockMixin):
page = PageChooserBlock( page = PageChooserBlock(
page_type=["uniweb.UniwebPersonPage", "district.DistrictPersonPage"], page_type=["uniweb.UniwebPersonPage", "district.DistrictPersonPage"],
......
...@@ -4,15 +4,20 @@ from django.db import migrations, models ...@@ -4,15 +4,20 @@ from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('uniweb', '0129_uniwebhomepage_ecomail_newsletter_list_id_and_more'), ("uniweb", "0129_uniwebhomepage_ecomail_newsletter_list_id_and_more"),
] ]
operations = [ operations = [
migrations.AddField( migrations.AddField(
model_name='uniwebhomepage', model_name="uniwebhomepage",
name='newsletter_list_id', name="newsletter_list_id",
field=models.CharField(blank=True, help_text='ID newsletteru z Mailtrainu. Po vyplnění se formulář pro odběr newsletteru zobrazí na úvodní stránce a na stránce s kontakty.', max_length=20, null=True, verbose_name='ID Mailtrain newsletteru'), field=models.CharField(
blank=True,
help_text="ID newsletteru z Mailtrainu. Po vyplnění se formulář pro odběr newsletteru zobrazí na úvodní stránce a na stránce s kontakty.",
max_length=20,
null=True,
verbose_name="ID Mailtrain newsletteru",
),
), ),
] ]
# Generated by Django 5.0.7 on 2025-03-24 20:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('uniweb', '0130_uniwebhomepage_newsletter_list_id'),
]
operations = [
migrations.AddField(
model_name='uniwebhomepage',
name='ecomail_newsletter_list_source',
field=models.CharField(blank=True, default='web-nl-generic', help_text='Není nutno měnit.', null=True, verbose_name='Ecomail newsletter zdroj'),
),
]
# Generated by Django 5.0.7 on 2025-03-25 15:39
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('uniweb', '0131_uniwebhomepage_ecomail_newsletter_list_source'),
]
operations = [
migrations.AddField(
model_name='uniwebformpage',
name='show_in_parent_page',
field=models.BooleanField(default=False, help_text='Pokud je toto pole zaškrtnuté, formulář se přesune do nadřazené stránky a stránka jemu nadřazená bude nedostupná.', verbose_name='Ukazovat obsah formuláře v nadřazené stránce?'),
),
]
This diff is collapsed.
# Generated by Django 5.0.7 on 2025-03-25 16:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('uniweb', '0133_alter_uniwebflexiblepage_content_and_more'),
]
operations = [
migrations.AddField(
model_name='uniwebhomepage',
name='fbevents_id',
field=models.CharField(blank=True, max_length=64, null=True, verbose_name='Interní ID 1'),
),
]
from captcha.fields import CaptchaField from captcha.fields import CaptchaField
from django.db import models from django.db import models
from django.shortcuts import redirect
from django.utils.translation import gettext_lazy from django.utils.translation import gettext_lazy
from modelcluster.contrib.taggit import ClusterTaggableManager from modelcluster.contrib.taggit import ClusterTaggableManager
from modelcluster.fields import ParentalKey, ParentalManyToManyField from modelcluster.fields import ParentalKey, ParentalManyToManyField
...@@ -31,7 +32,9 @@ from shared.const import RICH_TEXT_DEFAULT_FEATURES ...@@ -31,7 +32,9 @@ from shared.const import RICH_TEXT_DEFAULT_FEATURES
from shared.models import ( from shared.models import (
CalendarMixin, CalendarMixin,
CustomLogoMixin, CustomLogoMixin,
EcomailNewsletterMixin,
ExtendedMetadataPageMixin, ExtendedMetadataPageMixin,
FbEventsMixin,
MainArticlePageMixin, MainArticlePageMixin,
MainArticlesPageMixin, MainArticlesPageMixin,
MainHomePageMixin, MainHomePageMixin,
...@@ -49,11 +52,12 @@ from shared.models import ( ...@@ -49,11 +52,12 @@ from shared.models import (
from shared_legacy.models import FooterMixin as LegacyFooterMixin from shared_legacy.models import FooterMixin as LegacyFooterMixin
from shared_legacy.utils import make_promote_panels from shared_legacy.utils import make_promote_panels
from .blocks import PeopleGroupBlock, TeamBlock from .blocks import PeopleGroupBlock, TeamBlock, UniwebSubpageFormBlock
from .forms import UniwebArticlesPageForm, UniwebHomePageAdminForm from .forms import UniwebArticlesPageForm, UniwebHomePageAdminForm
CONTENT_STREAM_BLOCKS = DEFAULT_CONTENT_BLOCKS + [ CONTENT_STREAM_BLOCKS = DEFAULT_CONTENT_BLOCKS + [
("calendar", CalendarBlock()), ("calendar", CalendarBlock()),
("subpage_form", UniwebSubpageFormBlock()),
] ]
...@@ -71,6 +75,8 @@ class UniwebHomePage( ...@@ -71,6 +75,8 @@ class UniwebHomePage(
PageInMenuMixin, PageInMenuMixin,
ScrollProgressMixin, ScrollProgressMixin,
CustomLogoMixin, CustomLogoMixin,
EcomailNewsletterMixin,
FbEventsMixin,
MainHomePageMixin, MainHomePageMixin,
): ):
base_form_class = UniwebHomePageAdminForm base_form_class = UniwebHomePageAdminForm
...@@ -153,20 +159,6 @@ class UniwebHomePage( ...@@ -153,20 +159,6 @@ class UniwebHomePage(
) )
content_is_centered = models.BooleanField("Vycentrovat obsah", default=False) content_is_centered = models.BooleanField("Vycentrovat obsah", default=False)
ecomail_newsletter_list_id = models.IntegerField(
"ID Ecomail newsletteru",
blank=True,
null=True,
)
ecomail_newsletter_list_tags = models.CharField(
"Tagy k přidání novým odběratelům na Ecomailu",
max_length=128,
blank=True,
null=True,
help_text="Oddělte čárkou, například 'Tag1,Tag2,Tag3'. Bez mezer.",
)
newsletter_list_id = models.CharField( newsletter_list_id = models.CharField(
"ID Mailtrain newsletteru", "ID Mailtrain newsletteru",
max_length=20, max_length=20,
...@@ -209,11 +201,13 @@ class UniwebHomePage( ...@@ -209,11 +201,13 @@ class UniwebHomePage(
[ [
FieldPanel("ecomail_newsletter_list_id"), FieldPanel("ecomail_newsletter_list_id"),
FieldPanel("ecomail_newsletter_list_tags"), FieldPanel("ecomail_newsletter_list_tags"),
FieldPanel("ecomail_newsletter_list_source"),
FieldPanel("newsletter_list_id"), FieldPanel("newsletter_list_id"),
], ],
"Newsletter", "Newsletter",
), ),
FieldPanel("fallback_image"), FieldPanel("fallback_image"),
FieldPanel("fbevents_id"),
] + ScrollProgressMixin.settings_panels ] + ScrollProgressMixin.settings_panels
menu_panels = ( menu_panels = (
...@@ -493,6 +487,15 @@ class UniwebFormPage( ...@@ -493,6 +487,15 @@ class UniwebFormPage(
use_json_field=True, use_json_field=True,
) )
show_in_parent_page = models.BooleanField(
verbose_name="Ukazovat obsah formuláře v nadřazené stránce?",
default=False,
help_text=(
"Pokud je toto pole zaškrtnuté, formulář se přesune do nadřazené stránky "
"a stránka jemu nadřazená bude nedostupná."
),
)
### PANELS ### PANELS
content_panels = AbstractForm.content_panels + [ content_panels = AbstractForm.content_panels + [
...@@ -508,10 +511,13 @@ class UniwebFormPage( ...@@ -508,10 +511,13 @@ class UniwebFormPage(
submissions_panels = [FormSubmissionsPanel()] submissions_panels = [FormSubmissionsPanel()]
advanced_panels = [FieldPanel("show_in_parent_page")]
edit_handler = TabbedInterface( edit_handler = TabbedInterface(
[ [
ObjectList(content_panels, heading=gettext_lazy("Content")), ObjectList(content_panels, heading=gettext_lazy("Content")),
ObjectList(promote_panels, heading=gettext_lazy("Promote")), ObjectList(promote_panels, heading=gettext_lazy("Promote")),
ObjectList(advanced_panels, heading="Pokročilé"),
ObjectList(submissions_panels, heading="Data z formuláře"), ObjectList(submissions_panels, heading="Data z formuláře"),
] ]
) )
...@@ -527,6 +533,12 @@ class UniwebFormPage( ...@@ -527,6 +533,12 @@ class UniwebFormPage(
### OTHERS ### OTHERS
def serve(self, request):
if request.method == "GET" and self.show_in_parent_page:
return redirect(self.parent_page.url)
return super().serve(request)
class Meta: class Meta:
verbose_name = "Formulářová stránka" verbose_name = "Formulářová stránka"
......
{% load wagtailcore_tags %}
{% if self.page.show_in_parent_page %}
<form
class="
flex flex-col gap-8
{% if not self.page.root_page.content_is_full_width %}
max-w-[100ch]
{% else %}
max-w-[100%]
{% endif %}
{% if self.page.root_page.content_is_centered %}
mx-auto
{% endif %}
"
action="{% pageurl self.page %}"
method="post"
>
{% csrf_token %}
{% with self.page.get_form as form %}
{% for hidden_field in form.hidden_fields %}
{{ hidden_field.errors }}
{{ hidden_field }}
{% endfor %}
{% for field in form.visible_fields %}
<div class="flex flex-col gap-2">
{% if field.widget_type == "select" %}
{% include "styleguide2/includes/atoms/form_fields/form_select.html" %}
{% elif field.widget_type == "radioselect" %}
{% include "styleguide2/includes/atoms/form_fields/form_radio.html" %}
{% elif field.widget_type == "selectmultiple" %}
{% include "styleguide2/includes/atoms/form_fields/form_multiselect.html" %}
{% elif field.widget_type == "text" %}
{% include "styleguide2/includes/atoms/form_fields/form_text.html" %}
{% elif field.widget_type == "textarea" %}
{% include "styleguide2/includes/atoms/form_fields/form_textarea.html" %}
{% elif field.widget_type == "email" %}
{% include "styleguide2/includes/atoms/form_fields/form_email.html" %}
{% elif field.widget_type == "number" %}
{% include "styleguide2/includes/atoms/form_fields/form_number.html" %}
{% elif field.widget_type == "url" %}
{% include "styleguide2/includes/atoms/form_fields/form_url.html" %}
{% elif field.widget_type == "checkbox" %}
{% include "styleguide2/includes/atoms/form_fields/form_checkbox.html" %}
{% elif field.widget_type == "checkboxselectmultiple" %}
{% include "styleguide2/includes/atoms/form_fields/form_checkbox_multiple.html" %}
{% elif field.widget_type == "date" %}
{% include "styleguide2/includes/atoms/form_fields/form_date.html" %}
{% elif field.widget_type == "datetime" %}
{% include "styleguide2/includes/atoms/form_fields/form_datetime.html" %}
{% elif field.widget_type == "captchatext" %}
{% include "styleguide2/includes/atoms/form_fields/form_captcha.html" %}
{% else %}
{{ field.widget_type }}
{% endif %}
{% if field.help_text %}
<label
class="text-grey-250 text-sm"
for="{{ field.id_for_label }}"
>{{ field.help_text }}</label>
{% endif %}
{% if field.errors %}
<div class="form-field__error">{{ field.errors }}</div>
{% endif %}
</div>
{% endfor %}
{% endwith %}
{% include "styleguide2/includes/atoms/buttons/round_button_form.html" with show_arrow_on_hover=True text="Odeslat" %}
</form>
{% endif %}
\ No newline at end of file
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