{% extends "bee_django_course/base.html" %} {% load bootstrap3 %} {% load bee_django_course_filter %} {% block content %} 学生:{{ user|get_name_detail:True|safe }} {% for e in lives %} {% endfor %}
序号 日期 时长 查看
{{ forloop.counter }} {{ e.created_at }} {{ e.duration }}秒 {% if e.record_status == '10' %} 查看 {% elif e.record_status == '20' %} 录制失败 {% elif e.record_status == '30' %} 视频过长 {% else %} 转码中 {% endif %}
{% load bootstrap_pagination %} {% bootstrap_paginate lives range=10 %} {% endblock content %}