summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_field_flex_detail_multiple_full.html
blob: 12ab9d524546bc51f371a32d03a4e3b44485eca7 (plain)
1
2
3
4
5
6
7
8
9
{% load i18n %}{% if data %}
<dl class="col-12">
    <dt>{% trans caption %}</dt>
    <dd>{% for d in data %}
        {% if forloop.counter0 %} ; {% endif %}{{d.link}} {{ d.item }}
        {% endfor %}</dd>
</dl>
{% endif %}