|
|
|
|
@ -38,13 +38,13 @@ |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="col-xs-6 product-short-description"> |
|
|
|
|
<h4>{{ product.title }}</h4> <br/> |
|
|
|
|
<h4>{{ product.title }}</h4> |
|
|
|
|
|
|
|
|
|
<div class="product-detail-price"> |
|
|
|
|
<span class="product-detail-price-span">{{ product.min_price() }}</span> ₸ |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<br/> |
|
|
|
|
|
|
|
|
|
{% 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 @@ |
|
|
|
|
<option value="{{ count_val + 1 }}">{{ count_val + 1 }} шт.</option> |
|
|
|
|
{% endfor %} |
|
|
|
|
</select> |
|
|
|
|
<br/><br/><br/> |
|
|
|
|
<br/> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="itogo col-xs-6"> |
|
|
|
|
@ -91,20 +91,36 @@ |
|
|
|
|
class="glyphicon glyphicon-shopping-cart" aria-hidden="true"></span> Добавить в корзину</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="product-not-in-stock"> |
|
|
|
|
Товара нет в наличии <br/><br/> |
|
|
|
|
Товара нет в наличии <br/><br/><br/> |
|
|
|
|
<a class=" btn btn-danger btn-block order-order-link" href="#order-form" data-itemid="{{ product.pk }}" |
|
|
|
|
style="max-width: 200px"><span><span |
|
|
|
|
class="glyphicon glyphicon-import" aria-hidden="true"></span> Заказать</span></a> |
|
|
|
|
</div> |
|
|
|
|
<br/> |
|
|
|
|
<div class="tags "> |
|
|
|
|
<h5 class="text-left"> |
|
|
|
|
Поделиться ссылкой:</h5> |
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="//yastatic.net/share/share.js" charset="utf-8"></script> |
|
|
|
|
<div class="yashare-auto-init" data-yashareL10n="ru" data-yashareType="small" |
|
|
|
|
data-yashareQuickServices="vkontakte,facebook,twitter,odnoklassniki,moimir,gplus" |
|
|
|
|
data-yashareLink="http://batiskaf-kz.kz{{ object.get_absolute_url() }}" |
|
|
|
|
data-yashareTitle="{{ object.title }}" data-yashareTheme="counter"></div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class=" text-left product-description"> |
|
|
|
|
{{ product.description|linebreaks|safe }} |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %} |
|
|
|
|
|
|
|
|
|
|