Live data from Hacker News

Django-registration 1.0 is out

pypi.python.org

11–20 of 20 posts

Re: Django-registration 1.0 is out

#15

Django newbie here, how does Django-registrations compare to django-userena?

From my quick stint with django-userena, it felt very constrained. At that time, my application's login requirements were simple, but needed a few minor tweaks. It's been a while, but I recall that doing so didn't seem like an easy task, so I switched to django-registration then eventually using the Django 1.5 custom user model.

Overall, I'd say do a quick run through of both. If one of them has exactly what you need, stick with it. Otherwise, you are probably better off using the default User model or extending the default.

Re: Django-registration 1.0 is out

#17

Is it now possible (and straightforward) to drop the requirement for a username and solely use email addresses for user accounts?

Why not just enforce the username field to email syntax?

because prior to the new User implementation in 1.5, you couldn't change the length of the username CharField. Long emails wouldn't fit.
Post reply on HN