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.
31 lines
913 B
31 lines
913 B
{% load static %} {% load thumbnail %} {% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>
|
|
{% block title %}Онлайн-курсы LilCity{% endblock title%}
|
|
</title>
|
|
<link rel="stylesheet" media="all" href={% static "app.css" %}>
|
|
</head>
|
|
|
|
<body onload="setTimeout(window.print, 1000)">
|
|
<div class="outer js-outer">
|
|
<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 %}
|
|
{% include 'blocks/schedule_item.html' with school_schedule=school_schedule live_lesson=school_schedule.current_live_lesson print=True %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|
|
|