diff --git a/paddling_amenities.yaml b/paddling_amenities.yaml
index c3fb707..af19dcd 100644
--- a/paddling_amenities.yaml
+++ b/paddling_amenities.yaml
@@ -32,22 +32,27 @@ feature:
body: |-
{% if constIndex in ['canoe=put_in', 'leisure=slipway','canoe=portage'] %}
- - {{ keyTrans('Surface') }}
- - {{ tagTrans('surface', attribute(tags, 'surface')) }}
-
- {{ keyTrans('Description') }}
- {{ localizedTag(tags, 'description') }}
+ - {{ keyTrans('Surface') }}
+ - {{ attribute(tags, 'surface') ? tagTrans('surface', attribute(tags, 'surface')) : '' }}
+
- {{ keyTrans('Access') }}
- - {{ tagTrans('access', attribute(tags, 'access')) }}
+ - {{ attribute(tags, 'access') ? tagTrans('access', attribute(tags, 'access')) : '' }}
- {{ keyTrans('Fee') }}
- - {{ tagTrans('fee', attribute(tags, 'fee')) }}
+ - {{ attribute(tags, 'fee') ? tagTrans('fee', attribute(tags, 'fee')) : '' }}
+
+ - {{ trans('Photos') }}
+ -
+ {% if attribute(tags, 'mapillary') %}
+ Mapillary
+ {% endif %}
+
- {% if attribute(tags, 'mapillary') %}
- Mapillary Photo
- {% endif %}
+
{% endif %}
markerSign: '{{ item[''sign''] }}'