mirror of
https://codeberg.org/slatian/service.echoip-slatecave.git
synced 2024-11-10 08:37:21 +01:00
8 lines
293 B
HTML
8 lines
293 B
HTML
|
{% macro place_dl(place, label="", iso_code_prefix="") %}
|
||
|
{% if place %}
|
||
|
{% if label %}<dh>{{label}}</dh>{% endif %}
|
||
|
<dd>{{place.name}} {% if place.iso_code%}({% if iso_code_prefix %}{{iso_code_prefix}}-{% endif %}{{place.iso_code}}){% endif %}</dd>
|
||
|
{% endif %}
|
||
|
{% endmacro place_dl %}
|
||
|
|