diff options
Diffstat (limited to 'ctrack/register')
-rw-r--r-- | ctrack/register/forms.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ctrack/register/forms.py b/ctrack/register/forms.py index 021414d..0335149 100644 --- a/ctrack/register/forms.py +++ b/ctrack/register/forms.py @@ -38,6 +38,7 @@ class EngagementEventCreateForm(forms.ModelForm): ee = super().save(commit=False) if commit: ee.save() + self.save_m2m() # so that we also save the peoples! return ee class Meta: |