@ -21,7 +21,7 @@ class IndexView(TemplateView):
except SchoolSchedule.DoesNotExist:
online = False
else:
online = school_schedule.start_at <= now().time()
online = school_schedule.start_at <= now().time() and school_schedule.current_live_lesson()
context.update({
'online': online,