Closed pepijnstemerding closed 2 years ago
Could anybody please help me with this, I genuinely dont understand what is wrong..
My issue was that
path('', include('django_registration.backends.activation.urls')),
is before
path('register/',
RegistrationView.as_view(
form_class=CustomRegisterForm
),
name='django_registration_register',
),
Hey,
using:
I carefully read all the documentation regarding using this and Custom User models, and of it came the following applicable code:
settings.py:
users/forms.py:
users/urls.py:
my CustomUserManager:
my CustomUser model:
But I still get the follow error:
But clearly I did specify the custom user model in settings and the custom registration form, so how do I fix this?