You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
835 B
28 lines
835 B
<div class="col-lg-3">
|
|
<div class="product-item">
|
|
<div>
|
|
<a href="{% url 'products' product_image.product.id %}">
|
|
<img src="{{ product_image.image.url }}" class="img-responsive">
|
|
</a>
|
|
</div>
|
|
|
|
{% if product_image.product.discount %}
|
|
<div class="discount-container">
|
|
<span>{{ product_image.product.discount }}%</span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<h4>{{ product_image.product.name }}</h4>
|
|
<p>
|
|
{{ product_image.product.description|truncatechars_html:30 }}
|
|
</p>
|
|
<div>
|
|
{{ product_image.product.price }} RUB
|
|
</div>
|
|
<div class="add-to-card-btn">
|
|
<button class="btn btn-success">
|
|
Add to basket
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|