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.
27 lines
1.4 KiB
27 lines
1.4 KiB
{% load static %}
|
|
<div class="main main_default" style="background-image: url({% static 'img/bg-2.jpg' %});">
|
|
<div class="main__center center">
|
|
<div class="main__title">
|
|
<span class="main__bold">Рисовальный лагерь</span> — продолжение нашей онлайн-школы только летом.
|
|
Понедельник, среда и пятница ждем вас в 17:00 (мск). Уроки хранятся 7 дней.
|
|
</div>
|
|
<div class="main__actions">
|
|
<a
|
|
{% if not is_purchased_future %}
|
|
data-popup=".js-popup-buy"
|
|
data-is-camp="1"
|
|
{% endif %}
|
|
class="main__btn btn"
|
|
href="#"
|
|
>
|
|
{% if not is_purchased and not is_purchased_future %}Купить доступ за {{ drawing_camp_price }} руб./месяц{% endif %}
|
|
{% if is_purchased_future and not is_purchased %}ваша подписка начинается {{school_purchased_future.date_start}}{% endif %}
|
|
{% if is_purchased %}ваша подписка истекает {{ subscription_ends_humanize }}<br/>перейти к оплате{% endif %}
|
|
</a>
|
|
|
|
{% if not is_purchased and not is_purchased_future %}
|
|
<a class="main__btn btn btn_stroke-black" href="{% url 'gift-certificates' %}">Подарить другу</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|