diff --git a/opentech/apply/funds/models.py b/opentech/apply/funds/models.py
index 390cadf4df287e0a4f0f223b1e21d08bc5f8031e..64d31590a59b7b373d1524c5bc0ffb5c74b4ed58 100644
--- a/opentech/apply/funds/models.py
+++ b/opentech/apply/funds/models.py
@@ -236,17 +236,23 @@ class Round(SubmittableStreamForm):
                 FieldPanel('start_date'),
                 FieldPanel('end_date'),
             ]),
-        ], heading="Dates")
+        ], heading="Dates"),
     ]
 
-    def save(self, *args, **kwargs):
+    def create(self, *args, **kwargs):
         if hasattr(self, 'parent_page'):
             # We attached the parent page as part of the before_create_hook
             self.workflow = self.parent_page.workflow
-            for form in self.parent_page.forms.all():
-                RoundForm.objects.create(round=self, form=form.form)
 
         super().save(*args, **kwargs)
+        if hasattr(self, 'parent_page'):
+            for form in self.parent_page.forms.all():
+                # Create a copy of the existing form object
+                new_form = form.form
+                new_form.id = None
+                new_form.save()
+                RoundForm.objects.create(round=self, form=new_form)
+
 
     def get_submit_meta_data(self, **kwargs):
         return super().get_submit_meta_data(
diff --git a/opentech/apply/funds/tests/factories/blocks.py b/opentech/apply/funds/tests/factories/blocks.py
index de04acc9acf1ea0a87f318f0481023bf121c5049..e568c5c3d3958aaa0c6a715745f1c84f86c180a2 100644
--- a/opentech/apply/funds/tests/factories/blocks.py
+++ b/opentech/apply/funds/tests/factories/blocks.py
@@ -4,7 +4,7 @@ from opentech.apply.stream_forms.blocks import FormFieldBlock
 from opentech.apply.funds import blocks
 
 
-__all__ = ['FormFieldBlock', 'FullNameBlockFactory', 'EmailBlockFactory']
+__all__ = ['CustomFormFieldsFactory', 'FormFieldBlock', 'FullNameBlockFactory', 'EmailBlockFactory']
 
 
 class FormFieldBlockFactory(wagtail_factories.StructBlockFactory):
@@ -20,3 +20,9 @@ class EmailBlockFactory(FormFieldBlockFactory):
 class FullNameBlockFactory(FormFieldBlockFactory):
     class Meta:
         model = blocks.FullNameBlock
+
+
+CustomFormFieldsFactory = wagtail_factories.StreamFieldFactory({
+    'email': EmailBlockFactory,
+    'full_name': FullNameBlockFactory,
+})
diff --git a/opentech/apply/funds/tests/factories/models.py b/opentech/apply/funds/tests/factories/models.py
index f6f0d8b50be72883dd5b708965758592929f356f..d6ebe296b13c71f2715b6ea04fc5b5e7dda20217 100644
--- a/opentech/apply/funds/tests/factories/models.py
+++ b/opentech/apply/funds/tests/factories/models.py
@@ -149,8 +149,17 @@ class FundTypeFactory(wagtail_factories.PageFactory):
     @factory.post_generation
     def forms(self, create, extracted, **kwargs):
         if create:
+            fields = {
+                f'form__form_fields__{i}__{field}__': ''
+                for i, field in enumerate(blocks.CustomFormFieldsFactory.factories.keys())
+            }
+            fields.update(**kwargs)
             for _ in range(len(self.workflow_class.stage_classes)):
-                FundFormFactory(fund=self)
+                # Generate a form based on all defined fields on the model
+                FundFormFactory(
+                    fund=self,
+                    **fields,
+                )
 
 
 class FundFormFactory(factory.DjangoModelFactory):
@@ -165,11 +174,7 @@ class ApplicationFormFactory(factory.DjangoModelFactory):
         model = ApplicationForm
 
     name = factory.Faker('word')
-    form_fields = wagtail_factories.StreamFieldFactory({
-        'email': blocks.EmailBlockFactory,
-        'full_name': blocks.FullNameBlockFactory,
-    })
-
+    form_fields = blocks.CustomFormFieldsFactory
 
 class RoundFactory(wagtail_factories.PageFactory):
     class Meta:
diff --git a/opentech/apply/funds/tests/test_models.py b/opentech/apply/funds/tests/test_models.py
index fecb73b808c0f2a2fc87f8355e96085e9b4d778c..946743da4b818691d262563480c20cc5e8d20c94 100644
--- a/opentech/apply/funds/tests/test_models.py
+++ b/opentech/apply/funds/tests/test_models.py
@@ -14,6 +14,7 @@ from opentech.apply.funds.workflow import SingleStage
 
 from .factories import (
     ApplicationFormFactory,
+    CustomFormFieldsFactory,
     FundFormFactory,
     FundTypeFactory,
     LabFactory,
@@ -160,7 +161,13 @@ class TestRoundModelWorkflowAndForms(TestCase):
         self.round.save()
         # We are no longer creating a round
         del self.round.parent_page
-        form = self.round.forms.first()
+        form = self.round.forms.first().form
+        # Not ideal, would prefer better way to create the stream values
+        new_field = CustomFormFieldsFactory.generate(None, {'0__email__': ''})
+        form.form_fields = new_field
+        form.save()
+        for round_form, fund_form in itertools.zip_longest(self.round.forms.all(), self.fund.forms.all()):
+            self.assertNotEqual(round_form, fund_form)
 
 
 class TestFormSubmission(TestCase):