Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/partners/templates/partners/partner_with_us_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
{% include "ui/components/SectionHeadingWithUnderline.html" with title=page.partnership_types_title %}
<div class="grid md:grid-cols-2 gap-8 mt-6 mb-20">
{% for ptype in page.get_children %}
{% if ptype.specific.live %}
<div class="p-6 bg-hot-off-white">
{% image ptype.specific.external_icon original class="h-12 w-auto mt-2" %}
<a href="{{ptype.url}}" class="hover:underline">
Expand All @@ -34,6 +35,7 @@ <h1 class="text-h4 font-semibold mt-4">
{{ptype.specific.intro|richtext}}
</div>
</div>
{% endif %}
{% endfor %}
</div>

Expand Down
4 changes: 2 additions & 2 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions hot_osm/settings/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@
},
}

CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
}
}



try:
from .local import *
except ImportError:
Expand Down
Loading