diff --git a/apps/account/forms.py b/apps/account/forms.py index fb2b828..25c9ef9 100644 --- a/apps/account/forms.py +++ b/apps/account/forms.py @@ -25,6 +25,7 @@ class Meta: fields = ['full_name','bio','picture'] def save(self, commit=True): + # save a profile profile = super().save(commit=False) profile.full_name = self.cleaned_data.get('full_name') profile.bio = self.cleaned_data.get('bio')