{% extends 'base.html' %} {% block content %}
Neues Quiz erstellen
Suche und Filter zurücksetzen

Filter

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

eigene Quiz

{% for quiz in quizzes %}

{{ quiz.name }}

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

{% endfor %} {% endif %}
{% if quizzes or all_quizzes %}

Quiz von anderen Nutzer

{% endif %} {% if all_quizzes %}
{% for quiz in all_quizzes %}

{{ quiz.name }}

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

{% endfor %} {% elif not quizzes %}
Es wurde kein passendes Quiz gefunden.
{% else %}
Es wurde kein passendes Quiz von einem anderen Nutzer gefunden.
{% endif %}
{% endblock %}