X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/fe3cc2a284f1aa7457b0ec9491203aae100681a6..c7587605ff2117ff1004239f8ec0cbd024cdc4ab:/wolnelektury/views.py diff --git a/wolnelektury/views.py b/wolnelektury/views.py index 01fac4686..bcead0317 100755 --- a/wolnelektury/views.py +++ b/wolnelektury/views.py @@ -19,7 +19,7 @@ from ajaxable.utils import placeholdized @never_cache def main_page(request): - last_published = Book.objects.exclude(html_file='').order_by('-created_at')[:4] + last_published = Book.objects.filter(parent=None).order_by('-created_at')[:4] return render_to_response("main_page.html", locals(), context_instance=RequestContext(request)) @@ -27,6 +27,7 @@ def main_page(request): class LoginFormView(AjaxableFormView): form_class = AuthenticationForm + template = "auth/login.html" placeholdize = True title = _('Sign in') submit = _('Sign in') @@ -67,7 +68,7 @@ class LoginRegisterFormView(LoginFormView): template = 'auth/login_register.html' title = _('You have to be logged in to continue') - def extra_context(self): + def extra_context(self, request, obj): return { "register_form": placeholdized(UserCreationForm(prefix='register')), "register_submit": _('Register'), @@ -99,7 +100,6 @@ def publish_plan(request): pass else: for i in range(len(feed['entries'])): - print i plan.append({ 'title': feed['entries'][i].title, 'link': feed['entries'][i].link,