{% load bee_django_course_simple_filter %}
{% for question in user_part.part.question_set.all %}
{{ question.title }}
{% for option in question.option_set.all %} {% get_user_answer_option_id request.user question.id as answer_option_id %}
{% endfor %}
{% endfor %}
{% if user_part.is_pass %} {% if user_part.part.has_answer %} 答对了{{ user_part.question_correct_count }}道题。{% if user_part.prize_coin > 0 %}获得 {{ user_part.prize_coin }}{{ context_coin_name }} {% endif %} {% if user_part.part.award_name %}
{% include 'bee_django_course_simple/part/_custom_user_part_question_award.html' %} {% endif %} {% else %} 该小节已通过 {% endif %} {% endif %}