{% endif %}
{% if allow_prolong %}
{% 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 %}
{% if is_previous %}
{% for live_lesson in live_lessons %}
{% if live_lesson.school_schedule and live_lesson.title %}
{% include 'blocks/schedule_item.html' with school_schedule=live_lesson.school_schedule live_lesson=live_lesson %}
{% endif %}
{% endfor %}
{% else %}
{% for school_schedule in school_schedules_sorted %}
{% include 'blocks/schedule_item.html' with school_schedule=school_schedule live_lesson=school_schedule.current_live_lesson %}
{% endfor %}
{% endif %}
{% endif %}