fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
pretty cite on main
[wolnelektury.git]
/
wolnelektury
/
views.py
diff --git
a/wolnelektury/views.py
b/wolnelektury/views.py
index
3fa4337
..
8732079
100755
(executable)
--- a/
wolnelektury/views.py
+++ b/
wolnelektury/views.py
@@
-11,6
+11,7
@@
from django.utils.http import urlquote_plus
from django.utils.translation import ugettext_lazy as _
from django.views.decorators.cache import never_cache
from django.utils.translation import ugettext_lazy as _
from django.views.decorators.cache import never_cache
+from django.conf import settings
from ajaxable.utils import AjaxableFormView
from catalogue.models import Book
from ajaxable.utils import AjaxableFormView
from catalogue.models import Book
@@
-24,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():
@@
-39,9
+40,10
@@
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
+ form_prefix = 'register'
def __call__(self, request):
if request.user.is_authenticated():
def __call__(self, request):
if request.user.is_authenticated():
@@
-57,6
+59,16
@@
class RegisterFormView(AjaxableFormView):
auth.login(request, user)
auth.login(request, user)
+class LoginRegisterFormView(LoginFormView):
+ template = 'auth/login_register.html'
+
+ def extra_context(self):
+ return {
+ "register_form": UserCreationForm(prefix='register'),
+ "register_submit": _('Register'),
+ }
+
+
@never_cache
def logout_then_redirect(request):
auth.logout(request)
@never_cache
def logout_then_redirect(request):
auth.logout(request)
@@
-77,7
+89,7
@@
def publish_plan(request):
if plan is None:
plan = []
try:
if plan is None:
plan = []
try:
- feed = feedparser.parse(
'http://localhost:8000/documents/track/editor-proofreading/'
)
+ feed = feedparser.parse(
settings.PUBLISH_PLAN_FEED
)
except:
pass
else:
except:
pass
else: