summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_image_odt.html
blob: 548d0b46f7f38da7f8b604f6976aaa5317d509f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% load i18n %}
<div class="lightgallery-captions">
    {% if item.main_image %}{% with image=item.main_image %}
    <div id="lightgallery-{{window_id}}-caption-0">
        <img src="{{BASE_URL}}{{image.thumbnail.url}}">
        {% include "ishtar/blocks/window_image_detail.html" %}
    </div>
    {% endwith %}{% endif %}
    {% for image in item.images_without_main_image.all %}
    <div id="lightgallery-{{window_id}}-caption-{{forloop.counter}}">
        <img src="{{BASE_URL}}{{image.thumbnail.url}}">
        {% include "ishtar/blocks/window_image_detail.html" %}
    </div>
    {% endfor %}
</div>