So , I am trying to make an register and login system . I want to customize it using the custom user model , where I can save my data and extend the model. I am
For example my name is David and my friend is Daniel. I want to show these two names in their first letter wise . Item has a 'name' field. In the template I wan
My custom user model for login via email: class MyUser(AbstractBaseUser): id = models.AutoField(primary_key=True) # AutoField? is_superuser = models.I