{% load image_tags %}
{% load i18n %}
{% load staticfiles %}
{% 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 %}
{% oscar_thumbnail image.original "440x400" upscale=False as thumb %}
{% endfor %}
{% for image in all_images %}
{% oscar_thumbnail image.original "65x55" crop="center" as thumb %}
{% endfor %}
{% else %}
{# Only one image to show #}
{% with image=product.primary_image %}
{% oscar_thumbnail image.original "440x400" upscale=False as thumb %}
{% endwith %}