django-registration
django-registration copied to clipboard
An extensible user-registration app for Django.
I believe I'm hitting a bug where I can't import anything from `django_registration.backends.activation.views` because of a bug in `django_registration.forms.RegistrationForm` that is hit at import time. ## Setup Create a custom...
Altering database state on GET requests is frowned upon. (Django, for example, is already deprecating logout via GET.) Besides being a matter of HTTP spec compliance, there is a known...
The two-step activation workflow's RegistrationView expects the user object to have a email_user method: https://github.com/ubernostrum/django-registration/blob/7a1d8609b7c262f0321bbb39a6f901b9a6953cce/src/django_registration/backends/activation/views.py#L106 This is true for custom user models that inherit from AbstractUser, but not for those...
Attempt to improve `README.rst` for giving a brief introduction about the app to users finding about the tool from github.
I upgraded to Django 5.1 and now my registration form looks like this:  That confusing "Password-based authentication" field is new - it looks like...
Hi! Currently in 5.1.0 in new `django_registration/activation_form.html` after https://github.com/ubernostrum/django-registration/pull/247 there are some translations missing, for example:  At first glance: https://github.com/ubernostrum/django-registration/blob/a397174f7149c6f038fb68f09ba4d46064be8281/src/django_registration/backends/activation/forms.py#L26-L29 I think this `activation_key` needs "label" `label=_("Activation key")` and...