You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
{% load thumbnail %}
|
|
{% if results %}
|
|
<div class="title">Галерея итогов обучения</div>
|
|
<div class="examples gallery">
|
|
{% for image in course.gallery.gallery_images.all %}
|
|
<div class="examples__item">
|
|
<a href="{{ image.img.image.url }}">
|
|
{% thumbnail image.img.image "165x165" crop="center" as im %}
|
|
<img class="examples__pic" src="{{ im.url }}">
|
|
{% endthumbnail %}
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="section section_gradient">
|
|
<div class="section__center center center_sm">
|
|
<div class="title">{{ content.title }}</div>
|
|
<div class="examples gallery">
|
|
{% for image in content.gallery_images.all %}
|
|
<div class="examples__item">
|
|
<a href="{{ image.img.image.url }}">
|
|
{% thumbnail image.img.image "165x165" crop="center" as im %}
|
|
<img class="examples__pic" src="{{ im.url }}">
|
|
{% endthumbnail %}
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|