diff --git a/opentech/apply/funds/models/applications.py b/opentech/apply/funds/models/applications.py
index fccac8966385c609bd0f786aeb07ebbf0756f3f4..0d7e1b53136b0b1bbb00fd55ab0abadc09d4a443 100644
--- a/opentech/apply/funds/models/applications.py
+++ b/opentech/apply/funds/models/applications.py
@@ -5,6 +5,7 @@ from django.core.exceptions import ValidationError
 from django.db import models
 from django.db.models import OuterRef, Q, Subquery
 from django.http import Http404
+from django.utils.functional import cached_property
 from django.utils.text import mark_safe
 
 from modelcluster.fields import ParentalManyToManyField
@@ -55,7 +56,7 @@ class ApplicationBase(EmailForm, WorkflowStreamForm):  # type: ignore
         # The location to find out more information
         return self.application_public.first()
 
-    @property
+    @cached_property
     def open_round(self):
         return RoundBase.objects.child_of(self).open().first()
 
diff --git a/opentech/apply/home/models.py b/opentech/apply/home/models.py
index 3d135ce17c5e27c54899b3753c19ed77d2aa9dc8..31a7e55b6369d4ba37d6d18d2bf06dab8f9c920a 100644
--- a/opentech/apply/home/models.py
+++ b/opentech/apply/home/models.py
@@ -24,6 +24,10 @@ class ApplyHomePage(Page):
 
     def get_context(self, *args, **kwargs):
         context = super().get_context(*args, **kwargs)
-        context['open_funds'] = ApplicationBase.objects.order_by_end_date()
-        context['open_labs'] = LabBase.objects.public().live()
+        context['open_funds'] = ApplicationBase.objects.order_by_end_date().prefetch_related(
+            'application_public'
+        ).specific()
+        context['open_labs'] = LabBase.objects.public().live().prefetch_related(
+            'lab_public'
+        ).specific()
         return context
diff --git a/opentech/apply/home/templates/apply_home/apply_home_page.html b/opentech/apply/home/templates/apply_home/apply_home_page.html
index 041adf22b6bcfff0b11fd23f667749cc1e4fd316..ac43d0e342d3461dc62055bb5826ab75d8f12f55 100644
--- a/opentech/apply/home/templates/apply_home/apply_home_page.html
+++ b/opentech/apply/home/templates/apply_home/apply_home_page.html
@@ -17,10 +17,10 @@
 
     <div class="wrapper wrapper--listings">
     {% for fund in open_funds %}
-        {% include "apply_home/includes/apply_listing.html" with page=fund.specific %}
+        {% include "apply_home/includes/apply_listing.html" with page=fund %}
     {% endfor %}
     {% for lab in open_labs %}
-        {% include "apply_home/includes/apply_listing.html" with page=lab.specific %}
+        {% include "apply_home/includes/apply_listing.html" with page=lab %}
     {% endfor %}
     </div>
 
diff --git a/opentech/apply/home/templates/apply_home/includes/apply_listing.html b/opentech/apply/home/templates/apply_home/includes/apply_listing.html
index 3faa2671fc9b5b8f7ae235a31a31dcb14ab7b283..63950a16c75da500644162ebc0d396f7515f960f 100644
--- a/opentech/apply/home/templates/apply_home/includes/apply_listing.html
+++ b/opentech/apply/home/templates/apply_home/includes/apply_listing.html
@@ -1,6 +1,6 @@
 {% load wagtailcore_tags %}
 
-{% with details=page.detail.specific %}
+{% with details=page.detail %}
 {% if page.open_round %}
   <div class="listing listing--not-a-link">
       <div>