diff --git a/apps/school/templates/blocks/_schedule_purchased_item.html b/apps/school/templates/blocks/_schedule_purchased_item.html
index 416a4f4f..b9d1db1f 100644
--- a/apps/school/templates/blocks/_schedule_purchased_item.html
+++ b/apps/school/templates/blocks/_schedule_purchased_item.html
@@ -6,15 +6,17 @@
{{ school_schedule }}
{% if live_lesson %}
-
+
{{ school_schedule.start_at }} (МСК)
- {% if school_schedule.weekday in school_schedules_purchased and live_lesson %}
- {% include './open_lesson.html' %}
+ {% if school_schedule.weekday in school_schedules_purchased %}
+ {% if live_lesson and live_lesson.title %}
+ {% include './open_lesson.html' %}
+ {% endif %}
{% else %}
- {% include './day_pay_btn.html' %}
+ {% include './day_pay_btn.html' %}
{% endif %}
{% comment %}
@@ -34,12 +36,12 @@
-
{{ school_schedule.title }}{% if live_lesson %},
+
{{ school_schedule.title }}{% if live_lesson and live_lesson.title %},
{{ live_lesson.title }}
{% endif %}
- {% if live_lesson %}
+ {% if live_lesson and live_lesson.short_description %}
{{ live_lesson.short_description }}
{% else %}
{{ school_schedule.description }}
diff --git a/apps/school/templates/summer/_schedule_purchased_item.html b/apps/school/templates/summer/_schedule_purchased_item.html
index 416a4f4f..b9d1db1f 100644
--- a/apps/school/templates/summer/_schedule_purchased_item.html
+++ b/apps/school/templates/summer/_schedule_purchased_item.html
@@ -6,15 +6,17 @@
{{ school_schedule }}
{% if live_lesson %}
-
+
{{ live_lesson.date }}
{% endif %}
{{ school_schedule.start_at }} (МСК)
- {% if school_schedule.weekday in school_schedules_purchased and live_lesson %}
- {% include './open_lesson.html' %}
+ {% if school_schedule.weekday in school_schedules_purchased %}
+ {% if live_lesson and live_lesson.title %}
+ {% include './open_lesson.html' %}
+ {% endif %}
{% else %}
- {% include './day_pay_btn.html' %}
+ {% include './day_pay_btn.html' %}
{% endif %}
{% comment %}
@@ -34,12 +36,12 @@