summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_image_odt.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates/ishtar/blocks/window_image_odt.html')
-rw-r--r--ishtar_common/templates/ishtar/blocks/window_image_odt.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/window_image_odt.html b/ishtar_common/templates/ishtar/blocks/window_image_odt.html
new file mode 100644
index 000000000..9c9383cdd
--- /dev/null
+++ b/ishtar_common/templates/ishtar/blocks/window_image_odt.html
@@ -0,0 +1,9 @@
+{% load i18n %}
+<div class="lightgallery-captions">
+ {% for image in item.images.all %}
+ <div id="lightgallery-{{window_id}}-caption-{{forloop.counter0}}">
+ <img src="{{BASE_URL}}{{image.thumbnail.url}}">
+ {% include "ishtar/blocks/window_image_detail.html" %}
+ </div>
+ {% endfor %}
+</div>