2018-01-02 17:06:12 +01:00
|
|
|
import django
|
2017-09-16 02:33:40 +02:00
|
|
|
from django.views.generic import RedirectView
|
2017-08-03 12:40:52 +02:00
|
|
|
|
2018-01-02 17:06:12 +01:00
|
|
|
if django.VERSION >= (1, 10):
|
|
|
|
from django.urls import reverse_lazy
|
|
|
|
else:
|
|
|
|
from django.core.urlresolvers import reverse_lazy
|
|
|
|
|
2017-08-03 12:40:52 +02:00
|
|
|
|
2017-09-16 02:33:40 +02:00
|
|
|
class CaptureLogin(RedirectView):
|
|
|
|
url = reverse_lazy('account_login')
|
|
|
|
query_string = True
|
2018-01-02 17:06:12 +01:00
|
|
|
permanent = False
|
2017-08-03 12:40:52 +02:00
|
|
|
|
|
|
|
|
2017-09-16 02:33:40 +02:00
|
|
|
capture_login = CaptureLogin.as_view()
|
|
|
|
|
|
|
|
|
|
|
|
class CaptureLogout(RedirectView):
|
|
|
|
url = reverse_lazy('account_logout')
|
|
|
|
query_string = True
|
2018-01-02 17:06:12 +01:00
|
|
|
permanent = False
|
2017-09-16 02:33:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
capture_logout = CaptureLogout.as_view()
|