diff --git a/app/partners/templates/partners/partner_with_us_page.html b/app/partners/templates/partners/partner_with_us_page.html
index 855ef86f..9c363332 100644
--- a/app/partners/templates/partners/partner_with_us_page.html
+++ b/app/partners/templates/partners/partner_with_us_page.html
@@ -23,6 +23,7 @@
{% include "ui/components/SectionHeadingWithUnderline.html" with title=page.partnership_types_title %}
{% for ptype in page.get_children %}
+ {% if ptype.specific.live %}
+ {% endif %}
{% endfor %}
diff --git a/chart/Chart.yaml b/chart/Chart.yaml
index 85ba967b..e6e2798b 100644
--- a/chart/Chart.yaml
+++ b/chart/Chart.yaml
@@ -6,11 +6,11 @@ type: application
icon: https://hotosm.org/static/images/favicon-16x16.png
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
-version: 1.0.9
+version: 1.0.10
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
-appVersion: "1.0.9"
+appVersion: "1.0.10"
dependencies:
- name: dragonfly
diff --git a/hot_osm/settings/dev.py b/hot_osm/settings/dev.py
index 60cc27d3..30a0b1ae 100644
--- a/hot_osm/settings/dev.py
+++ b/hot_osm/settings/dev.py
@@ -28,6 +28,14 @@
},
}
+CACHES = {
+ 'default': {
+ 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
+ }
+}
+
+
+
try:
from .local import *
except ImportError: