django-inspectional-registration
django-inspectional-registration copied to clipboard
Django registration app with Inspection before activation
Current master version is not compatible with Django 2+. I have a compatible version here: https://github.com/HenryMehta/django-inspectional-registration Don't know how to migrate it back to you
Fixes #80 for Django 1.11. For other versions of django a fix is needed in `password_reset_confirm.html` to add the tag `` and `rel="noreferrer"` should be added to the anchor tag...
Part of the fix for #80 can be done by using class-based views in Django 1.11 > To avoid the possibility of leaking a password reset token via the HTTP...
I think it is possible to leak the password reset token since it is left in the url. In Django 1.11 the token is stripped during a redirect ([docs](https://docs.djangoproject.com/en/1.11/releases/1.11/#django-contrib-auth), [code](https://github.com/django/django/blob/1.11.2/django/contrib/auth/views.py#L461))...
I am developing an application where an admin invites a user. The user opens the same registration page provided by this package. When he registers, I don't want the admin...
The `manage.py makemigrations`command created an additional migration in the registration app. This is annoying for deploying and I'm not sure if this is the expected behavior. ``` Migrations for 'gtaccess':...
Like https://github.com/lambdalisue/django-inspectional-registration/issues/11#issuecomment-189370666 But....... Well........ English..... #### How to add document ##### From source code 1. Write `docstring` to source code files like [`registration/backends/defalt/__init__.py`](https://github.com/lambdalisue/django-inspectional-registration/blob/1ecb382bcb343b3480c997910ef393034d9040e3/src/registration/backends/default/__init__.py#L58-L104) 2. Run ``` sh $ sphinx-apidoc -f...
Hello. Could you help me with the form validation and Supplement form validation. How could I do that ? My full question on [stackoverflow](http://stackoverflow.com/questions/32313843/custom-form-validation-in-django-inspectional-registration). Thank you.
Signals
Hello. I'm trying to send email on user_registered signal to get full information about this user. I made `signals.py` file with the following code (as in official django docs on...