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