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