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