fix(models.py): fix wagtail editor error on new page creation

This commit is contained in:
2026-03-16 13:20:16 +01:00
parent eb526618d1
commit 6e6154f98c

View File

@@ -112,7 +112,7 @@ class EventPage(Page):
related_name="hosted_events",
help_text="Select users who will be listed as hosts of this event.",
)
signed_up_users = models.ManyToManyField(
signed_up_users = ParentalManyToManyField(
User,
related_name="signed_up_events",
blank=True,