echoip-slatecave/templates/helpers.html
2023-02-18 13:09:37 +01:00

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 %}