{% extends "product_catalog/base.html" %} {% load i18n %} {% block catalog_content %}

{% trans "Product" %}: {{ product.title }}

{% if FRONT_MANAGEMENT %} {% trans 'Update product' %} {% trans 'Delete product' %} {% endif %} {% if product.image %}

{{ product.image_caption }}

{% endif %}

{{ product.content }}

{% trans "Categories" %}: {% for category in product.categories.all %} {{ category.title }}{% if not forloop.last %}, {% endif %} {% endfor %} {% endblock %}