{% extends 'base.html' %} {% block content %}
Neues Quiz erstellen

Filter

Maximale Anzahl an Fragen {{ form.max_amout_questions }} von User {{ form.user }}
{% if quizzes %}

meine eigenen Quiz

{% for quiz in quizzes %}

{{ quiz.name }}

{{ quiz.description }}
Status: {{ quiz.status }}
Schwierigkeit: {{ quiz.difficulty }}
Anzahl der Fragen: {{ quiz.question.count }}

{% endfor %} {% endif %}
{% if all_quizzes %}

Quiz von anderen Nutzern

{% for quiz in all_quizzes %}

{{ quiz.name }}

{{ quiz.description }}
Schwierigkeit: {{ quiz.difficulty }}
Anzahl der Fragen: {{ quiz.question.count }}
Erstmalig erstellt am: {{ quiz.creation_date }}

Spiel starten
Quiz von {{ quiz.user_id }}
{% endfor %} {% else %}
Es wurde kein passendes Quiz von einem anderen Nutzer gefunden.
{% endif %}
{% endblock %}