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

{{ user_name }}的直播间

{% 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 %} {% block scripts %} {% endblock %}