{% set address = tagsPrefix(tags, 'addr:') %} {% if address %}
  • {{ keyTrans('addr') }}: {{ attribute(tags, 'addr:street') }} {{ attribute(tags, 'addr:housenumber') }}, {{ attribute(tags, 'addr:postcode') }} {{ attribute(tags, 'addr:city') }}
  • {% endif %} {% if tags.phone %}
  • {{ keyTrans('phone') }}: {{ tags.phone }}
  • {% endif %} {% if tags.opening_hours %} {% set oh_state = openingHoursState(tags.opening_hours) %} {% set oh_css = { "open": "yes", "closed": "no", "unknown": "unknown" } %} {% set oh_css = oh_css[oh_state] %}
  • {{ keyTrans('opening_hours') }}: {{ trans(oh_state) }}
    {{ tags.opening_hours }}
  • {% endif %} {% set payment = tagsPrefix(tags, 'payment:') %} {% if payment %}
  • {{ keyTrans('payment') }}: {% for k, tag in payment %} {% if tags[tag] == 'no' %}{{ k }} {% else %}{{ k }} {% endif %} {% endfor %}
  • {% endif %} {% if attribute(tags, 'wheelchair') %}
  • {{ trans('facilities') }}:
      {% if attribute(tags, 'wheelchair') %}
    • {{ keyTrans('wheelchair') }}: {{ tagTrans('wheelchair', tags.wheelchair) }}
        {% if attribute(tags, 'toilets:wheelchair') %}
      • 🚽 {{ keyTrans('toilets:wheelchair') }}: {{ tagTrans('toilets:wheelchair', attribute(tags, 'toilets:wheelchair')) }}
      • {% endif %}
    • {% endif %}
  • {% endif %}