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

{{ usercoursesection.section.name }}

{% for e in usercoursesection.section.sectionvideo_set.all %}
{{ e.video.title }} {% if video_provider_name == 'cc' %} {% elif video_provider_name == 'qiniu' %}
{% endif %} {{ e.video.info |default:"" | linebreaks }}
{% endfor %}
{{ usercoursesection.section.info | safe }}

附件:

{% for attach in usercoursesection.section.sectionattach_set.all %}
教材: {{ attach.file_name }}
{% endfor %}

要求:

{% if usercoursesection.section.has_textwork %}
{{ usercoursesection.section.textwork_info }}
{% endif %} {% if usercoursesection.section.has_imagework %}
需要上传{{ usercoursesection.section.image_count_req }}张图片
{% endif %} {% if usercoursesection.section.has_videowork %}
需要录制{{ usercoursesection.section.video_length_req }}分钟的作业
{% endif %} {% if usercoursesection.section.has_questionwork %}
需要答题
{% endif %}
{% include "bee_django_course/user/section_notes.html" with notes=all_notes %} {% bootstrap_pagination all_notes %}
{% include "bee_django_course/user/section_notes.html" with notes=my_notes %} {% bootstrap_pagination my_notes %}
{% endblock content %}