From 482dd8d3fbf8044dd2750b974da66f484214e3af Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Sat, 8 Apr 2017 21:59:00 +0200 Subject: [PATCH] Fix newest publications not shown --- scipost/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scipost/views.py b/scipost/views.py index 138209088..6ba474479 100644 --- a/scipost/views.py +++ b/scipost/views.py @@ -204,7 +204,7 @@ def index(request): """ Main page """ context = {} context['latest_newsitems'] = NewsItem.objects.all().order_by('-date')[:2] - context['issue'] = Issue.objects.get_last_filled_issue(in_volume__in_journal__name='SciPost Physics') + context['issue'] = Issue.objects.get_last_filled_issue(in_volume__in_journal__name='SciPostPhys') if context['issue']: context['publications'] = context['issue'].publication_set.filter(doi_string__isnull=False ).order_by('-publication_date')[:4] -- GitLab