fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
dont use celery to index - seems it gets blocked on index file access
[wolnelektury.git]
/
wolnelektury
/
views.py
diff --git
a/wolnelektury/views.py
b/wolnelektury/views.py
index
f2d9abd
..
c594732
100755
(executable)
--- a/
wolnelektury/views.py
+++ b/
wolnelektury/views.py
@@
-25,9
+25,9
@@
def main_page(request):
class LoginFormView(AjaxableFormView):
form_class = AuthenticationForm
class LoginFormView(AjaxableFormView):
form_class = AuthenticationForm
- #template = "auth/login.html"
title = _('Sign in')
submit = _('Sign in')
title = _('Sign in')
submit = _('Sign in')
+ ajax_redirect = True
def __call__(self, request):
if request.user.is_authenticated():
def __call__(self, request):
if request.user.is_authenticated():
@@
-40,9
+40,9
@@
class LoginFormView(AjaxableFormView):
class RegisterFormView(AjaxableFormView):
form_class = UserCreationForm
class RegisterFormView(AjaxableFormView):
form_class = UserCreationForm
- #template = "auth/register.html"
title = _('Register')
submit = _('Register')
title = _('Register')
submit = _('Register')
+ ajax_redirect = True
def __call__(self, request):
if request.user.is_authenticated():
def __call__(self, request):
if request.user.is_authenticated():