{% extends "_layouts/base.html" %} {% load static %} {% block title %}{{ item.name }}{% endblock %} {% block add_css %} {% endblock %} {% block content %} {% include "_fragments/header.html" with active="catalog" %} {% url 'detail' item.category.slug item.slug as product_url %} {% include '_fragments/breadcrumbs.html' with url_1='/' text_1='Главная' url_2='/catalog/' text_2='Каталог' url_3='/catalog/'|add:item.category.slug|add:'/' text_3=item.category.name url_4=product_url text_4=item.name %} {% if primary_image %} {% else %} Нет фото {% endif %} {% if images %} {% for image in images %} {% endfor %} {% endif %} {{ item.category.name }}{% if item.subcategory %} / {{ item.subcategory.name }}{% endif %} {{ item.name }} {{ item.price }} руб. {% if item.is_available %}В наличии{% else %}Нет в наличии{% endif %} {% if item.description %} {{ item.description|linebreaksbr }} {% endif %} В корзину Купить {% include "_fragments/footer.html" %} {% endblock %}
{{ item.category.name }}{% if item.subcategory %} / {{ item.subcategory.name }}{% endif %}