mirror of
https://gitlab.crans.org/bde/nk20
synced 2024-12-23 16:02:25 +00:00
profile is first created via signal.
This commit is contained in:
parent
3990009400
commit
0de2c18bec
@ -49,10 +49,10 @@ class UserCreateView(CreateView):
|
|||||||
def form_valid(self, form):
|
def form_valid(self, form):
|
||||||
profile_form = ProfileForm(self.request.POST)
|
profile_form = ProfileForm(self.request.POST)
|
||||||
if form.is_valid() and profile_form.is_valid():
|
if form.is_valid() and profile_form.is_valid():
|
||||||
user = form.save()
|
user = form.save(commit=False)
|
||||||
profile = profile_form.save(commit=False)
|
user.profile = profile_form.save(commit=False)
|
||||||
profile.user = user
|
user.save()
|
||||||
profile.save()
|
user.profile.save()
|
||||||
return super().form_valid(form)
|
return super().form_valid(form)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user