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

{{ user_name }}的直播间

{# 当前练习:{{ current_workout_section.user_course.course.name | default:'暂无' }}#} {# > {{ current_workout_section.section.name | default:'暂无' }}#} {#
#} {# #} {# 要求练习时长:{{ current_workout_section.section.video_length_req | default:'0' }} 分钟#} {# #} {# |#} {# 已完成 {{ current_workout_section.work_time | default:'0' }} 分钟#} {#
#} {#
#} {# 练习说明:#} {#
#} {# {{ current_workout_section.section.instruction | default:'暂无' | linebreaks }}#} {#
#} {% if request.user == user %} {% if user.userprofile.room_id and user.is_pause == False %} 开启C直播 {% endif %} {% if gensee_room and user.is_pause == False %}
开启G直播
{% endif %} {% endif %}

{{ user_name }}的历史录制

{# #} {% for l in live_list %} {# #} {% endfor %}
开始时间结束时间时长
{% if l.coin_multiple >= 2 %} ({{ l.coin_multiple }}倍{{ context_coin_name }}) {% endif %} {{ l.start_time | default:'' }}{{ l.end_time | default:'' }} {% if l.record_status == '10' %} {{ l.duration }}秒 {% elif l.record_status == '20' %} 转码失败 {% elif l.record_status == '30' %} 直播过长 {% else %} -- {% endif %} {% if l.record_status == '10' %} {# #} 观看 {% elif l.record_status == '20' %} 录制失败 {% elif l.record_status == '30' %} 视频过长 {% else %} 转码中 {% endif %}
{% include 'bee_django_course/paginator.html' %}
{% endblock content %}