From 1a947f4dcd58b38e81665861ef13c26998c1b253 Mon Sep 17 00:00:00 2001 From: "J.-S. Caux" <J.S.Caux@uva.nl> Date: Tue, 16 May 2017 15:26:25 +0200 Subject: [PATCH] Simplify homepage --- scipost/templates/scipost/index.html | 1 - scipost/views.py | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/scipost/templates/scipost/index.html b/scipost/templates/scipost/index.html index 6ae0ba1ba..6b6d0e13a 100644 --- a/scipost/templates/scipost/index.html +++ b/scipost/templates/scipost/index.html @@ -93,7 +93,6 @@ </li> {% endfor %} </ul> - <p class="text-center mt-3" style="color: red;"><em>If you support and believe in our mission, <br/>be a pioneer and submit a manuscript!</em></p> </div> </div><!-- End latest publications --> </div><!-- End deck --> diff --git a/scipost/views.py b/scipost/views.py index babdffec0..26f3e74a6 100644 --- a/scipost/views.py +++ b/scipost/views.py @@ -172,9 +172,9 @@ def search(request): def index(request): '''Main page.''' context = { - 'latest_newsitems': NewsItem.objects.all().order_by('-date')[:2], - 'submissions': Submission.objects.public().order_by('-submission_date')[:4], - 'publications': Publication.objects.published().order_by('-publication_date')[:4] + 'latest_newsitems': NewsItem.objects.all().order_by('-date')[:1], + 'submissions': Submission.objects.public().order_by('-submission_date')[:3], + 'publications': Publication.objects.published().order_by('-publication_date')[:3] } return render(request, 'scipost/index.html', context) -- GitLab