{% 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 }} {{ 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 request.user == ucs.user_course.user %}#} {# {% if ucs.section.has_videowork %}#} {# 去练习#} {# {% endif %}#} {# {% if ucs.section.has_imagework or ucs.section.has_videowork %}#} {# 去做作业 %}#} {# {% endif %}#} {##} {##} {# {% endif %}#} {#
#} {#
#} {#
#} {# {% csrf_token %}#} {# {% bootstrap_form note_form %}#} {# {% bootstrap_button '提交' %}#} {#
#} {#
#} {# #} {##} {#
#} {##} {#
#} {##} {#
#} {#
#} {# {% include "bee_django_course/user/section_notes.html" with notes=my_notes %}#} {#
#} {##} {#
#}

全部笔记:

{% include "bee_django_course/user/section_notes.html" with notes=all_notes %}
{% endblock content %}