{% 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.price }} руб. {% if item.is_available %}В наличии{% else %}Нет в наличии{% endif %}
{% if item.description %}
{{ item.description|linebreaksbr }}
{% endif %}
{% if item.id in cart_item_ids %} Перейти в корзину {% elif request.user.is_authenticated %}
{% csrf_token %}
{% else %} В корзину {% endif %}
{% include "_fragments/footer.html" %} {% endblock %}