diff --git a/batiskaf/templates/jinja2/product.jinja b/batiskaf/templates/jinja2/product.jinja
index f6f92d6..8fca9fb 100644
--- a/batiskaf/templates/jinja2/product.jinja
+++ b/batiskaf/templates/jinja2/product.jinja
@@ -38,13 +38,13 @@
-
{{ product.title }}
+
{{ product.title }}
{{ product.min_price() }} ₸
-
+
{% set variant = product.variations.filter(in_stock__gt=0).order_by('price').first() %}
{% if not variant %}
{% set variant = product.variations.order_by('price').first() %}
@@ -78,7 +78,7 @@
{% endfor %}
-
+
@@ -91,20 +91,36 @@
class="glyphicon glyphicon-shopping-cart" aria-hidden="true"> Добавить в корзину
+
- Товара нет в наличии
+ Товара нет в наличии
Заказать
+
+
+
+
{{ product.description|linebreaks|safe }}
+
{% endblock %}