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

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

{% if search_form %} {% include 'bee_django_course/live/user_live_search.html' %} {% 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 }} {% if live.is_star %} {% endif %} {{ live.provider_name }} {{ 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' %} 查看 {% if live.get_mentor_comments_status %} (已点评) {% endif %} {% elif live.record_status == '20' %} 录制失败 {% elif live.record_status == '30' %} 视频过长 {% else %} 转码中 {% endif %} {% if perms.bee_django_course.delete_userlive %} 删除 {% endif %}
{% include 'bee_django_course/paginator.html' %} {% endblock %} {% block scripts %} {% endblock %}