I\'m using django-registration-redux in my project for user registration. It uses default User model which use username as the unique
django-registration-redux
User
username
You will want to use AbstractBaseUser. Docs are here:
https://docs.djangoproject.com/en/1.8/topics/auth/customizing/
Good luck!