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.
56 lines
1.7 KiB
56 lines
1.7 KiB
<ul>
|
|
{% set address = tagsPrefix(tags, 'addr:') %}
|
|
{% if address %}
|
|
<li class='hasSymbol'>
|
|
<i class="fa fa-map-marker" aria-hidden="true"></i>
|
|
<span class='key'>{{ keyTrans('addr') }}:</span>
|
|
<span class='value'>
|
|
{{ attribute(tags, 'addr:street') }}
|
|
{{ attribute(tags, 'addr:housenumber') }},
|
|
{{ attribute(tags, 'addr:postcode') }}
|
|
{{ attribute(tags, 'addr:city') }}
|
|
</span>
|
|
</li>
|
|
{% endif %}
|
|
|
|
{% if tags.phone %}
|
|
<li class='hasSymbol'>
|
|
<i class="fa fa-phone" aria-hidden="true"></i>
|
|
<span class='key'>{{ keyTrans('phone') }}:</span>
|
|
<span class='value'>
|
|
<a href='tel:{{ tags.phone }}'>{{ tags.phone }}</a>
|
|
</span>
|
|
</li>
|
|
{% endif %}
|
|
|
|
{% set payment = tagsPrefix(tags, 'payment:') %}
|
|
{% if payment %}
|
|
<li class='hasSymbol'>
|
|
<i class="fa fa-money" aria-hidden="true"></i>
|
|
<span class='key'>{{ keyTrans('payment') }}:</span>
|
|
<span class='value'>
|
|
{% for k, tag in payment %}
|
|
{% if tags[tag] == 'no' %}<s>{{ k }}</s> {% else %}{{ k }} {% endif %}
|
|
{% endfor %}
|
|
</span>
|
|
</li>
|
|
{% endif %}
|
|
|
|
{% if attribute(tags, 'wheelchair') %}
|
|
<li class='hasSymbol'>
|
|
<i class="fa fa-info-circle" aria-hidden="true"></i>
|
|
<span class='key'>{{ trans('facilities') }}:</span>
|
|
<span class='value'>
|
|
|
|
{% if attribute(tags, 'wheelchair') %}
|
|
<i class="fa fa-wheelchair-alt {{ tags.wheelchair }}" aria-hidden="true" title='{{ keyTrans('wheelchair') }}: {{ tagTrans('wheelchair', tags.wheelchair) }}'></i>
|
|
|
|
{% if attribute(tags, 'toilets:wheelchair') %}
|
|
(<span class='{{ attribute(tags, 'toilets:wheelchair') }}' title='{{ keyTrans('toilets:wheelchair') }}: {{ tagTrans('toilets:wheelchair', attribute(tags, 'toilets:wheelchair')) }}'>🚽</span>)
|
|
{% endif %}
|
|
{% endif %}
|
|
</span>
|
|
</li>
|
|
{% endif %}
|
|
|
|
</ul>
|