课程直播
{% if pager.total_pages > 0 %}
课程/章节 |
直播时间 |
操作 |
{% for item in pager.items %}
{% set course_url = url({'for':'home.course.show','id':item.course.id}) %}
{% set chapter_url = url({'for':'home.chapter.show','id':item.chapter.id}) %}
{% set live_url = url({'for':'home.tc.live','id':item.chapter.id}) %}
{% set allow_push = (item.start_time - 1800 < time()) and (time() < item.start_time + 1800) %}
课程:{{ item.course.title }}
章节:{{ item.chapter.title }}
|
开始:{{ date('Y-m-d H:i',item.start_time) }}
结束:{{ date('Y-m-d H:i',item.end_time) }}
|
{% if allow_push %}
{% else %}
{% endif %}
|
{% endfor %}
{{ partial('partials/pager') }}
{% endif %}