summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_field_multiple.html
blob: f076301748f91887db9d504174986f0967b09670 (plain)
1
2
3
4
5
6
{% load i18n %}{% if data.count %}{% if li %}<li>{% else %}<p>{% endif %}<label>{% trans caption %}</label>
    <span class='value'>{% for d in data.all %}
        {% if forloop.counter0 %} ; {% endif %}{{ d }}
    {% endfor %}</span>
{% if li %}</li>{% else %}</p>{% endif %}
{% endif %}