Category "django-users"

Django can't login the superuser in admin page

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

Django queryset by first letter?

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

custom django-user object has no attribute 'has_module_perms'

My custom user model for login via email: class MyUser(AbstractBaseUser): id = models.AutoField(primary_key=True) # AutoField? is_superuser = models.I