{% extends "bee_django_course_simple/base.html" %} {% load bee_django_course_simple_filter %} {% block styles %} {% endblock %} {% block content %}
用户 | {{ 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 }} |