X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/075fb07f19c2f20cd3b6818b973e7aebebdacc9f..50f38b58c45dc9b68da614b3e26d45951088ec0c:/wolnelektury/views.py diff --git a/wolnelektury/views.py b/wolnelektury/views.py index f2d9abd70..c59473217 100755 --- a/wolnelektury/views.py +++ b/wolnelektury/views.py @@ -25,9 +25,9 @@ def main_page(request): class LoginFormView(AjaxableFormView): form_class = AuthenticationForm - #template = "auth/login.html" title = _('Sign in') submit = _('Sign in') + ajax_redirect = True def __call__(self, request): if request.user.is_authenticated(): @@ -40,9 +40,9 @@ class LoginFormView(AjaxableFormView): class RegisterFormView(AjaxableFormView): form_class = UserCreationForm - #template = "auth/register.html" title = _('Register') submit = _('Register') + ajax_redirect = True def __call__(self, request): if request.user.is_authenticated():