X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/8952b9530d943655e552ea660c47e850123c5105..09ac89c30a2ab3eea1995ac78e72eae94c7a3f39:/src/catalogue/urls.py diff --git a/src/catalogue/urls.py b/src/catalogue/urls.py index 27fddc2f0..230e1c925 100644 --- a/src/catalogue/urls.py +++ b/src/catalogue/urls.py @@ -37,7 +37,7 @@ urlpatterns = [ path('audiobooki/', views.audiobooks, name='audiobook_list'), path('daisy/', views.daisy_list, name='daisy_list'), path('nowe/', ListView.as_view( - queryset=Book.objects.filter(parent=None).order_by('-created_at'), + queryset=Book.objects.filter(parent=None, findable=True).order_by('-created_at'), template_name='catalogue/recent_list.html'), name='recent_list'), path('nowe/audiobooki/', ListView.as_view( queryset=Book.objects.filter(media__type='ogg').annotate(m=Max('media__uploaded_at')).order_by('-m'),