{% extends "bee_django_course_simple/base.html" %} {% load bee_django_course_simple_filter %} {% block styles %} {% endblock %} {% block content %}

答题详情

{% for question in user_part.part.question_set.all %} {% endfor %}
用户 {{ user_part.user_section.user_course.user }}
题目{{ forloop.counter }} {{ question.title }}
正确答案 {% for option in question.get_correct_options %} {{ option.title }} {% if not forloop.last %},{% endif %} {% endfor %}
用户答案 {% get_user_answer_option user question.id as o %} {{ o.title }}
{% endblock %} {% block scripts %} {% endblock %}