From a3a5679278ae0d8e562cdfeeb304b19cd15011b7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Alexa=20Valentov=C3=A1?= <git@imaniti.org>
Date: Wed, 26 Mar 2025 07:34:40 +0100
Subject: [PATCH] hotfix

---
 ...0135_uniwebformpage_subscribe_to_ecomail.py | 18 ++++++++++++++++++
 uniweb/models.py                               | 12 ++++++++++--
 2 files changed, 28 insertions(+), 2 deletions(-)
 create mode 100644 uniweb/migrations/0135_uniwebformpage_subscribe_to_ecomail.py

diff --git a/uniweb/migrations/0135_uniwebformpage_subscribe_to_ecomail.py b/uniweb/migrations/0135_uniwebformpage_subscribe_to_ecomail.py
new file mode 100644
index 00000000..513e0255
--- /dev/null
+++ b/uniweb/migrations/0135_uniwebformpage_subscribe_to_ecomail.py
@@ -0,0 +1,18 @@
+# Generated by Django 5.0.7 on 2025-03-26 06:34
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('uniweb', '0134_uniwebhomepage_fbevents_id'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='uniwebformpage',
+            name='subscribe_to_ecomail',
+            field=models.BooleanField(default=False, verbose_name='Automaticky odebírat vyplněné údaje do Ecomail NL?'),
+        ),
+    ]
diff --git a/uniweb/models.py b/uniweb/models.py
index 0543746a..9be40559 100644
--- a/uniweb/models.py
+++ b/uniweb/models.py
@@ -496,6 +496,11 @@ class UniwebFormPage(
         ),
     )
 
+    subscribe_to_ecomail = models.BooleanField(
+        verbose_name="Automaticky odebírat vyplněné údaje do Ecomail NL?",
+        default=False,
+    )
+
     ### PANELS
 
     content_panels = AbstractForm.content_panels + [
@@ -511,7 +516,7 @@ class UniwebFormPage(
 
     submissions_panels = [FormSubmissionsPanel()]
 
-    advanced_panels = [FieldPanel("show_in_parent_page")]
+    advanced_panels = [FieldPanel("show_in_parent_page"), FieldPanel("subscribe_to_ecomail")]
 
     edit_handler = TabbedInterface(
         [
@@ -535,7 +540,10 @@ class UniwebFormPage(
 
     def serve(self, request):
         if request.method == "GET" and self.show_in_parent_page:
-            return redirect(self.parent_page.url)
+            if hasattr(self, "parent_page"):
+                return redirect(self.parent_page.url)
+            else:
+                return redirect("/")
 
         return super().serve(request)
 
-- 
GitLab