Re: Will django include a simpler way to change username to email for registration in the future ?

2018-01-24 Thread Nick Sarbicki
django allauth (http://django-allauth.readthedocs.io/en/latest/overview.html) also has a pretty good setup for this as well as a lot of other functionality. As suggested it just takes a change in settings.py to move to email as username (although it isn't stored that way in the DB that is how it

Re: Will django include a simpler way to change username to email for registration in the future ?

2018-01-24 Thread Avraham Serour
someone posted an app for that here w while ago: http://django-improved-user.readthedocs.io/en/latest/index.html On Wed, Jan 24, 2018 at 1:23 AM, Vijay Khemlani wrote: > I have been using django-custom-user for that without any issues > > On Tue, Jan 23, 2018 at 6:43 PM,

Re: Will django include a simpler way to change username to email for registration in the future ?

2018-01-23 Thread Vijay Khemlani
I have been using django-custom-user for that without any issues On Tue, Jan 23, 2018 at 6:43 PM, Daniel Cîrstea wrote: > Hello. For a while I noticed that it is a struggle to extend the > AbstractBaseUser in order to change user to email for registration and >

Will django include a simpler way to change username to email for registration in the future ?

2018-01-23 Thread Daniel Cîrstea
Hello. For a while I noticed that it is a struggle to extend the AbstractBaseUser in order to change user to email for registration and login. Takes time and it is a lot of code. I was wondering if django will include a simpler way of doing it ? Something simple like just changing a