django-class-based-auth-views
django-class-based-auth-views copied to clipboard
Is there any chance making new PyPI release compatible with Django 1.9, please?
When I use that package in my `Django 1.8.4` project I get these warnings: ``` /home/linch/.pyenv/versions/metrophysics/lib/python3.4/site-packages/class_based_auth_views/views.py:63: RemovedInDjango19Warning: `request.REQUEST` is deprecated, use `request.GET` or `request.POST` instead. redirect_to = self.request.REQUEST.get(self.redirect_field_name, '') /home/linch/.pyenv/versions/metrophysics/lib/python3.4/site-packages/django/core/handlers/wsgi.py:126:...
Django built-in logout() function logs user out no matter the request method used, however LogoutView logs-user out only when POST method used.
It would be great if you implemented the forgot password views. See here: https://code.djangoproject.com/browser/django/trunk/django/contrib/auth/views.py#L127
`django.contrib.auth.views.login` passes the success URL to the context. `LoginView` doesn't. Adding a `get_context_data` method to my subclass with ``` context[self.redirect_field_name] = self.get_success_url() ``` preserves the behavior I had with the...