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

班级录播统计

{% include 'bee_django_course/report/user_live_search.html' %}
{% if user_class %}

{{ user_class.name }} 当前学生

{% endif %}
{{ start_dt|date:"Y-m-d H:i:s"|default:'' }} - {{ end_dt|date:"Y-m-d H:i:s"|default:'' }}
{# #} {% for student in user_list %} {% get_user_live_report student start_dt end_dt as detail %} {# #} {% endfor %}
学生 进度 学生录播 助教观看
{{ student }} {{ student.get_user_status }} {% get_user_last_course_section student None end_dt as ucs %}

{{ ucs.user_course.course.name }}

{{ ucs.section.name }}
{{ detail.0 }}分钟 / {{ detail.1 }}次 / {{ detail.2 }}天 {{ detail.3 }}次 / {{ detail.4 }}天录播记录
{% include 'bee_django_course/paginator.html' %} {% if mentor and user_class %}

{{ user_class.name }} 当前助教

{# #} {% get_user_live_report mentor start_dt end_dt as detail %} {# #}
助教 进度 助教录播
{{ mentor }} {{ mentor.get_user_status }} {% get_user_last_course_section mentor None end_dt as ucs %}

{{ ucs.user_course.course.name }}

{{ ucs.section.name }}
{{ detail.0 }}分钟 / {{ detail.1 }}次 / {{ detail.2 }}天录播记录
{% endif %} {% if perms.bee_django_user.view_user_class_remove_records %}

班级学生转入转出记录

{# #} {% for record in remove_records %} {% endfor %}
学生 原班级 新班级
{{ record.student }} {{ record.student.get_user_status }} {{ record.old_class|default:"" }} {{ record.new_class |default:"" }} 【{{ record.created_by }}】 于 【 {{ record.created_at }}】操作
{% endif %} {% endblock %} {% block scripts %} {% endblock %}