{% load static %} {% load thumbnail %}
{% include 'templates/blocks/messages.html' %}
{% 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 %}
{% comment %} previous week schedules {% endcomment %}
{% include './last_courses.html' %}