{% 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 %}

{{ item.category.name }}{% if item.subcategory %} / {{ item.subcategory.name }}{% endif %}

{{ item.name }}

{{ item.display_price }} руб. {% if item.has_discount %} {{ item.price }} руб. {% endif %}
{% if item.is_available %}В наличии{% else %}Нет в наличии{% endif %}
{% if colors %}
{% for color in colors %} {% endfor %}

{% for color in colors %}{% if color.id == selected_color_id %}Цвет: {{ color.name }}{% endif %}{% endfor %}

{% endif %} {% if item.description %}
{{ item.description|linebreaksbr }}
{% endif %}
{% if item.id in cart_item_ids %} Перейти в корзину {% elif request.user.is_authenticated %}
{% csrf_token %}
{% else %} В корзину {% endif %} {% if item.is_available %} Купить {% else %} {% endif %}
{% include "_fragments/footer.html" %} {% endblock %} {% block add_js %} {% endblock %}