{% load i18n %}

{% trans 'Attachments' %}

{% if product.has_attachments %}
{% for attachment in product.attachments.all %} {% endfor %}
{% trans 'Title' %} {% trans 'Description' %} {% trans 'Position' %} {% trans 'Manage' %}
{% if not forloop.first %} {% endif %} {% if not forloop.last %} {% else %} {% endif %}
{% else %} {% trans 'There are no attachments' %} {% endif %}

{% trans 'Add attachments' %}

{% csrf_token %}