{% if is_purchased %}
{% if not school_purchased_future %}
Подписка истекает
{{ subscription_ends }}
{% endif %}
{% else %}
Подписка
истекла
{% include './prolong_btn.html' with pink=True %}
{% endif %}
{% if not profile %}
{% if is_previous %}
Запись уроков
{% else %}
Новые уроки
{% endif %}
{% endif %}
{% if is_previous and not live_lessons_exists %}
Записей уроков пока нет
{% else %}
{% for school_schedule in school_schedules %}
{% if is_previous %}
{% if school_schedule.previous_live_lesson in live_lessons %}
{% include 'blocks/schedule_item.html' with school_schedule=school_schedule
live_lesson=school_schedule.previous_live_lesson purchased=True %}
{% endif %}
{% else %}
{% include 'blocks/schedule_item.html' with school_schedule=school_schedule
live_lesson=school_schedule.current_live_lesson purchased=True %}
{% endif %}
{% endfor %}
{% endif %}