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

{% if user %} {{ user|get_name_detail:False }}【{{ ucs.section }}】的问卷 {% else %} 问题列表 {% endif %}

{% if not user %} {% endif %} {% if user %} {% else %} {% endif %} {% for question in question_list %} {% if not user %} {% endif %} {% if user %} {% else %} {% endif %} {% endfor %}
问题课件正确答案用户答案
{{ forloop.counter }} {{ question.question }} {{ question.section.name }} {% if question.get_correct_options|length == 0 %} 无正确答案 {% endif %} {% for option in question.get_correct_options %} {{ option.option }} {% if not forloop.last %},{% endif %} {% endfor %} {% get_user_question_answer question user as records %} {% for record in records %} {{ record.answer.option }} {% if not forloop.last %},{% endif %} {% endfor %} 答题情况
{% include 'bee_django_course/paginator.html' %} {% endblock %} {% block scripts %} {% endblock %}