{% extends 'base.html' %} {% block content %}

{{ quiz.name }}

{% if quiz.description %}

{{ quiz.description }}

{% endif %}
{% if questions %}
{% for question in questions %}

{{ question.data.question }}

{% if question.data.type == 'multiple_choice' %}Multiple Choice{% else %}Wahr/Falsch{% endif %}
{% if question.data.type == 'multiple_choice' %}
    {% for option in question.data.options %}
  • {% if option.is_correct %} {{ option.value }} {% else %} {{ option.value }} {% endif %}
  • {% endfor %}
{% else %}

Richtige Antwort: {% if question.data.correct_answer %}Wahr{% else %}Falsch{% endif %}

{% endif %}
{% endfor %}
{% else %}

Noch keine Fragen vorhanden. Erstellen Sie eine neue Frage, um loszulegen!

{% endif %}
{% endblock %}