summaryrefslogtreecommitdiff
path: root/ishtar_common/templates
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates')
-rw-r--r--ishtar_common/templates/ishtar/blocks/window_field_multiple.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/window_field_multiple.html b/ishtar_common/templates/ishtar/blocks/window_field_multiple.html
new file mode 100644
index 000000000..30903b0d5
--- /dev/null
+++ b/ishtar_common/templates/ishtar/blocks/window_field_multiple.html
@@ -0,0 +1,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 %}
+