Re: best approach for using email as username

2009-10-30 Thread Subramanyam
small correction On Fri, Oct 30, 2009 at 7:41 PM, Subramanyam wrote: > Hi > > Firstly you can try using the following auth-backend > http://www.djangosnippets.org/snippets/74/ > > secondly > while rendering the signup form to the user > you can write a clean method in your

Re: best approach for using email as username

2009-10-30 Thread Subramanyam
Hi Firstly you can try using the following auth-backend http://www.djangosnippets.org/snippets/74/ secondly while rendering the signup form to the user you can write a clean method in your signnup form like def clean_email(self): try:

Re: best approach for using email as username

2009-10-30 Thread wancharle sebastiao quirino
Hi, The unique problem is username = email. You could create auth backend for login with email but email != username I use: http://code.google.com/p/django-profile/ In django-profile login is with username and email is opcional... But i add email auth backend and user can login with your

best approach for using email as username

2009-10-29 Thread Adrián Ribao
Hello, I need to use the email field as the username. I neet these: * Email must be unique * I should authenticate against the email * The admin should work I I should be able to create users with username = email address. I have a custom authentication method but I need more. I need to tell