{% extends "bee_django_course_simple/user_base.html" %} {% load static %} {% block content %} {% include 'bee_django_course_simple/section/_custom_user_section_list_css.html' %} {#课程列表#}

{{ user_course.course.title }}

{% for us in user_section_list %}
{% if us.section.group_name %}
{{ us.section.group_name }}
{% endif %}
{% if us.is_pass %} {{ us.section.title }}{{ us.section.extra_title|default:"" }} (已通过) {% elif us.is_open %} {{ us.section.title|default:"" }} (学习中) {% else %} {{ us.section.title|default:"" }} {% endif %}
{% for up in us.userpart_set.all %}
{{ up.part.title|default:"" }} {% if up.status == 2 %} {{ up.part.extra_title|default:"" }} {% 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 %}