{% load thumbnail %} {% load i18n %} {% load static %} {% load wagtailimages_tags %} {% load ocyan_thumbnail %} {% load ocyanjson %} {% ocyanjson "themes" "image_zoom" as image_zoom %} {% with all_images=product.get_all_images %} {# use length rather then count as the images get queried anyways #} {% if all_images|length > 1 %}
{% for image in all_images %}
{% picture image.original "200x200" crop="center" alt=image.caption|default:product.title %}
{% endfor %}
{% else %} {% endif %} {% endwith %}