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

meine eigenen Quiz

{% for quiz in quizzes %}

{{ quiz.name }}

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

{% endfor %}

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 %}
{% endblock %}