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