[Answered ]-Django's AUTH_PROFILE_MODULE ( User Profile ) misbehaving

2👍

https://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users

To make use of this feature, define a model with fields for the
additional information you’d like to store, or additional methods
you’d like to have available, and also add a OneToOneField named user
from your model to the User model.

Your OneToOneField needs to be named user

Leave a comment