{% extends "bee_django_course_simple/user_base.html" %} {% load bee_django_course_simple_filter %} {% load bootstrap3 %} {% block content %}

{{ user_section.section.title }} {% if user_section.is_pass %} (已通过) {% elif user_section.is_open %} (学习中) {% endif %}

全部课程
{% for user_part in user_section.userpart_set.all %}
{% include 'bee_django_course_simple/section/_custom_user_part_detail.html' %}
{% endfor %}
{% if next_user_section %} 继续 {% else %} {% endif %} {% endblock content %} {% block scripts %} {% endblock scripts %}