diff --git a/scipost_django/scipost/views.py b/scipost_django/scipost/views.py index d4bdb2e786842bac5ceff73d2164bd9357a9b0dd..26ac38be5652e7e4e9be70434ac21efbc41978b2 100644 --- a/scipost_django/scipost/views.py +++ b/scipost_django/scipost/views.py @@ -200,10 +200,11 @@ def portal_hx_home(request): "news_items": news_items, "latest_blogpost": latest_blogpost, "publications": Publication.objects.published() + .exclude(doi_label__contains="Proc") .order_by("-publication_date", "-paper_nr") .prefetch_related( "in_issue__in_journal", "specialties", "collection_set__series" - )[:3], + )[:5], } return render(request, "scipost/portal/_hx_home.html", context)