{% 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 %} {% for option in question.data.options %} {% if option.is_correct %}

Richtige Antwort: {{ option.value }}

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

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

{% endif %}
{% endblock %}