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