X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6c071c6cbb739209e9d8488ff7080f8ad7c7d2d0..f43bad97b17e376293c0a72e9c1726733fc285fa:/wolnelektury/views.py diff --git a/wolnelektury/views.py b/wolnelektury/views.py index 3fa4337af..01fac4686 100755 --- a/wolnelektury/views.py +++ b/wolnelektury/views.py @@ -11,10 +11,13 @@ 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.conf import settings from ajaxable.utils import AjaxableFormView from catalogue.models import Book +from ajaxable.utils import placeholdized +@never_cache def main_page(request): last_published = Book.objects.exclude(html_file='').order_by('-created_at')[:4] @@ -24,9 +27,10 @@ def main_page(request): class LoginFormView(AjaxableFormView): form_class = AuthenticationForm - #template = "auth/login.html" + placeholdize = True title = _('Sign in') submit = _('Sign in') + ajax_redirect = True def __call__(self, request): if request.user.is_authenticated(): @@ -39,9 +43,11 @@ class LoginFormView(AjaxableFormView): class RegisterFormView(AjaxableFormView): form_class = UserCreationForm - #template = "auth/register.html" + placeholdize = True title = _('Register') submit = _('Register') + ajax_redirect = True + form_prefix = 'register' def __call__(self, request): if request.user.is_authenticated(): @@ -49,7 +55,7 @@ class RegisterFormView(AjaxableFormView): return super(RegisterFormView, self).__call__(request) def success(self, form, request): - user = form.save() + form.save() user = auth.authenticate( username=form.cleaned_data['username'], password=form.cleaned_data['password1'] @@ -57,6 +63,17 @@ class RegisterFormView(AjaxableFormView): auth.login(request, user) +class LoginRegisterFormView(LoginFormView): + template = 'auth/login_register.html' + title = _('You have to be logged in to continue') + + def extra_context(self): + return { + "register_form": placeholdized(UserCreationForm(prefix='register')), + "register_submit": _('Register'), + } + + @never_cache def logout_then_redirect(request): auth.logout(request) @@ -77,7 +94,7 @@ def publish_plan(request): 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: