{% load i18n %}

{% trans 'Images' %}

{% if product.is_variant %}
{% csrf_token %}
{% endif %} {% if product.images.all %}
{% for image in product.images.all %} {% endfor %}
{% trans 'Image' %} {% trans 'Title' %} {% trans 'Position' %} {% trans 'Manage' %}
{{ image.title }} {% if not forloop.first %} {% endif %} {% if not forloop.last %} {% else %} {% endif %}
{% else %} {% trans 'There are no images' %} {% endif %}

{% trans 'Add images' %}

{% csrf_token %}