summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_image_odt.html
blob: 9c9383cdd03c46f31c419579df76ff85721f1770 (plain)
1
2
3
4
5
6
7
8
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>