summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_field_multiple.html
blob: d1ee25c7b1b6a416c6b95a0f8cf71b83b1f1e175 (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 %}