You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.1 KiB
27 lines
1.1 KiB
{% load static %}
|
|
{% load thumbnail %}
|
|
<div class="section" id="schedule">
|
|
<div class="section__center center center_md">
|
|
<div class="title title_center">Расписание</div>
|
|
<div class="timing js-timing">
|
|
<div class="timing__week">
|
|
{% for school_schedule in school_schedules_sorted %}
|
|
{% include 'blocks/schedule_item.html' with school_schedule=school_schedule live_lesson=school_schedule.current_live_lesson purchased=True %}
|
|
{% endfor %}
|
|
</div>
|
|
<div class="timing__foot">
|
|
{% comment %}
|
|
{% if not is_purchased and not is_purchased_future %}
|
|
<a data-popup=".js-popup-buy" class="btn" href="#">Получить доступ на месяц</a>
|
|
{% endif %}
|
|
<a target="_blank" class="timing__print" href="{% url 'school:school_schedules-print' %}">Распечатать расписание
|
|
<span class="bold">чтобы не забыть</span>
|
|
<svg class="icon icon-print">
|
|
<use xlink:href="{% static 'img/sprite.svg' %}#icon-print"></use>
|
|
</svg>
|
|
</a>
|
|
{% endcomment %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|