{% extends 'templates/main.volt' %} {% block content %} {{ partial('partials/macro_course') }}
{{ partial('teaching/menu') }}
课程直播
{% if pager.total_pages > 0 %} {% for item in pager.items %} {% set course_url = url({'for':'web.course.show','id':item.course.id}) %} {% set chapter_url = url({'for':'web.chapter.show','id':item.chapter.id}) %} {% set live_push_url = url({'for':'web.teaching.live_push','id':item.chapter.id}) %} {% set allow_push = (item.start_time - 1800 < time()) and (time() < item.start_time + 1800) %} {% endfor %}
课程/章节 直播时间 操作

课程:{{ item.course.title }}

章节:{{ item.chapter.title }}

{{ date('m-d',item.start_time) }} {{ date('H:i',item.start_time) }} ~ {{ date('H:i',item.end_time) }} {% if allow_push %} {% else %} {% endif %}
{{ partial('partials/pager') }} {% endif %}
{% endblock %} {% block include_js %} {{ js_include('web/js/teaching.js') }} {% endblock %}