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.
19 lines
921 B
19 lines
921 B
<div class="section" style="padding-bottom: 0px;">
|
|
<div class="section__center center text-center">
|
|
<a
|
|
{% if not is_purchased_future %}
|
|
href="{% url 'packages' %}"
|
|
{% else %}
|
|
href="#"
|
|
{% endif %}
|
|
class="main__btn btn"
|
|
>
|
|
{% if not is_purchased and not is_purchased_future %}Узнать стоимость{% 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>
|
|
|