X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b5d3bba7d1d4ff3efeade1ca9433765fc49a495b..f88f26e37b7f97e31ff75742eecd21d7f3fe4f16:/wolnelektury/views.py?ds=sidebyside diff --git a/wolnelektury/views.py b/wolnelektury/views.py index 361ec3745..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))