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