Main categories of OpenStreetBrowser
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
825 B

  1. <dl>
  2. {% set address = tagsPrefix(tags, 'addr:') %}
  3. {% if address %}
  4. <dt>
  5. <i class="fa fa-map-marker symbol" aria-hidden="true"></i>
  6. {{ keyTrans('addr') }}:
  7. </dt><dd>
  8. {{ attribute(tags, 'addr:street') }} {{ attribute(tags, 'addr:housenumber') }}, {{ attribute(tags, 'addr:postcode') }} {{ attribute(tags, 'addr:city') }}
  9. </dd>
  10. {% endif %}
  11. {% if tags.phone %}
  12. <dt>
  13. <i class="fa fa-phone symbol" aria-hidden="true"></i>
  14. {{ keyTrans('phone') }}:
  15. </dt>
  16. <dd>
  17. <a href='tel:{{ tags.phone }}'>{{ tags.phone }}</a>
  18. </dd>
  19. {% endif %}
  20. {% set payment = tagsPrefix(tags, 'payment:') %}
  21. {% if payment %}
  22. <dt>
  23. <i class="fa fa-money symbol" aria-hidden="true"></i>
  24. {{ keyTrans('payment') }}:
  25. </dt><dd>
  26. {% for k, tag in payment %}
  27. {% if tags[tag] == 'no' %}<s>{{ k }}</s> {% else %}{{ k }} {% endif %}
  28. {% endfor %}
  29. </dd>
  30. {% endif %}
  31. </dl>