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 0000000000000000000000000000000000000000..513e0255611f0cb5285c6fc14b8db29e7756efa2
--- /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 0543746a5591fdace594b6c024f26bbde011803b..9be40559faca8b10c97131ddf4b0a38e29d1da6d 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)