Can't login with normal user account in django
问题 I'm working on an app where I have a personalized User model. I can use the superuser to login, but when I try with a normal user I get an error of wrong password and user name. When I look at the data of the user, I find that the password of normal users isn't hashed. The models definition models.py : from django.db import models from django.contrib.gis.db import models from phonenumber_field.modelfields import PhoneNumberField from django.contrib.gis.db import models as gis_models from