diff --git a/core/templates/library/detail_quiz.html b/core/templates/library/detail_quiz.html index d0f6a41..436f9fa 100644 --- a/core/templates/library/detail_quiz.html +++ b/core/templates/library/detail_quiz.html @@ -63,12 +63,14 @@ {% endfor %} {% else %} + {% for option in question.data.options %} + {% if option.is_correct %}
- Richtige Antwort: - - {% if question.data.correct_answer %}Wahr{% else %}Falsch{% endif %} - -
+ Richtige Antwort: + {{ option.value }} + + {% endif %} + {% endfor %} {% endif %}