{% extends "bee_django_course_simple/user_base.html" %} {% load static %} {% block content %} {% include 'bee_django_course_simple/_custom_user_css.html' %}

{{ user_course.course.title }}

{% if user_course_list|length > 1 %}
{% endif %}
{% for us in user_section_list %}
{% if us.section.group_name %}
{{ us.section.group_name }}
{% endif %}
{{ us.section.title }}{{ us.section.extra_title|default:"" }}
{% for user_part in us.userpart_set.all %}
{% if user_part.part.is_video_type %} {% if user_part.is_close %} {% include "bee_django_course_simple/part/_custom_user_part_image_and_title.html" %} {% else %} {% include "bee_django_course_simple/part/_custom_user_part_image_and_title.html" %} {% endif %} {% elif user_part.part.is_question_type %} {% if user_part.is_close %} {% include "bee_django_course_simple/part/_custom_user_part_image_and_title.html" %} {% else %} {% include "bee_django_course_simple/part/_custom_user_part_image_and_title.html" %} {% endif %} {% endif %}
{% endfor %}
{# #} {# {% if e.is_open %}#} {# {{ e.started_at }} 开始#} {# {% endif %}#} {# {% if e.is_pass %}#} {# {{ e.started_at }} - {{ e.passed_at }}#} {##} {# {% endif %}#} {# #} {% endfor %}
{% include 'bee_django_course_simple/paginator.html' %}
{% endblock content %} {% block scripts %} {% endblock scripts %}