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.
 
 
 
 

34 lines
1.9 KiB

{% extends 'base.html' %}
{% block content %}
<div class="col-12">
<div class="content">
<div class="content__title">{{ title }}</div>
<div class="cashback">
<div class="cashback__list">
{% for discount in object_list %}
<div class="cashback__item">
<div class="cashback__image"><img src="./img/test-b.png" alt=""></div>
<div class="cashback__title">Cashback с каждой покупки!</div>
<div class="cashback__text">
<p>It is a long established fact that a reader will be distracted by the readable
content of a page when looking at its layout. The point of using Lorem Ipsum is
that it has a more-or-less normal distribution of letters, as opposed to using
'Content here, content here', making it look like readable English. Many desktop
publishing packages and web page editors now use Lorem Ipsum as their default
model text, and a search for 'lorem ipsum' will uncover many web sites still in
their infancy. Various versions have evolved over the years, sometimes by
accident, sometimes on purpose (injected humour and the like).</p>
</div>
</div>
{% empty %}
<div class="cashback__item">
Сегодня скидок не будет. Приходите завтра :))
</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% endblock content %}