4👍
✅
When calling save on the superclass using super
, use the form MyRegistrationForm
, not its superclass UserCreationForm
.
user = super(MyRegistrationForm, self).save(commit=False)
Source:stackexchange.com