X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2b57c59f0caa7d096a2e17aec3377d2628377491..24e09bc235b3ff6e659e901dfbdbcc23e6e14ba7:/wolnelektury/views.py diff --git a/wolnelektury/views.py b/wolnelektury/views.py index 9a0a3f9e3..c2624793b 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)) @@ -99,7 +99,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,