diff --git a/scipost/static/scipost/assets/css/_homepage.scss b/scipost/static/scipost/assets/css/_homepage.scss index e3ef3e8f07570b317b56029b0c3d5dee54951f4d..52cd38d0f81fd4376799cca61a20f16df4d699dd 100644 --- a/scipost/static/scipost/assets/css/_homepage.scss +++ b/scipost/static/scipost/assets/css/_homepage.scss @@ -47,6 +47,7 @@ img { max-height: 100px !important; + height: auto !important; width: auto !important; } } diff --git a/scipost/views.py b/scipost/views.py index b915380025f27fe03f00ef51651f1920ba48b8c6..a9fe527bf5667f0f4f2368b966a3ca8c66dc58a7 100644 --- a/scipost/views.py +++ b/scipost/views.py @@ -90,7 +90,7 @@ def index(request): 'journals': Journal.objects.order_by('name'), 'publications': Publication.objects.published().order_by('-publication_date', '-paper_nr')[:3], - 'current_agreements': MembershipAgreement.objects.now_active()[:2], + 'current_agreements': MembershipAgreement.objects.now_active(), } return render(request, 'scipost/index.html', context)