{% extends "bee_django_course/base.html" %} {% load bee_django_course_filter %} {% block content %}

{% if user %}{{ user|get_name_detail:False }}的{% endif %}录播列表

共{{ paginator.count }}个
{% for live in live_list %} {% endfor %}
学生 video ID|live ID 开始时间 时长 查看
{% if live.coin_multiple >= 2 %} ({{ live.coin_multiple }}倍{{ context_coin_name }}) {% endif %} {{ forloop.counter }} {{ live.user|get_name_detail:True|safe }} {{ live.record_video_id|default:"" }} |
{{ live.live_id|default:"" }}
{{ live.start_time|date:"Y-m-d H:i:s" }} {{ live.get_duration_str }} {% if live.record_status == '10' %} 查看 {% elif live.record_status == '20' %} 录制失败 {% elif live.record_status == '30' %} 视频过长 {% else %} 转码中 {% endif %}
{% include 'bee_django_course/paginator.html' %} {% endblock %} {% block scripts %} {% endblock %}