{% extends 'base.html' %} {% load static %} {% block extra_css %} {% endblock %} {% block content %}
Zurücksetzen Neues Quiz
{{ form.min_amout_questions }}
{{ form.max_amout_questions }}
{{ form.user }}
{% if user.is_authenticated %}

Eigene Quiz

{% for quiz in my_quizzes %}
{% if quiz.image %}
{% else %}
{% endif %} {% if user.is_authenticated %} {% if quiz.id not in favorite_quiz_ids %} {% else %} {% endif %} {% endif %}

{{ quiz.name }}

{{ quiz.description }}

{{ quiz.difficulty }}
{{ quiz.questions.count }} Fragen
{{ quiz.status }}
{% for i in '12345'|make_list %} {% if forloop.counter <= quiz.average_rating|floatformat:0|add:0 %} {% else %} {% endif %} {% endfor %} ({{ quiz.rating_count }})
{% if quiz.authors.all %}
{% for author in quiz.authors.all %} {{ author.username }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
{% if quiz.questions.count != 0 %} Spielen {% else %} Fürs Spielen ist min. 1 Frage nötig! {% endif %}
{% if quiz.user_id == request.user %} {% endif %}
{% endfor %}
{% if my_quizzes.paginator.num_pages > 1 %}
{% if my_quizzes.has_previous %} {% endif %} Seite {{ my_quizzes.number }} von {{ my_quizzes.paginator.num_pages }} {% if my_quizzes.has_next %} {% endif %}
{% endif %}
{% endif %} {% if user.is_authenticated %}

Meine Favoriten

{% for quiz in favorite_quizzes %}
{% if quiz.image %}
{% else %}
{% endif %} {% if user.is_authenticated %} {% if quiz.favorite == False %} {% else %} {% endif %} {% endif %}

{{ quiz.name }}

{{ quiz.description }}

{{ quiz.difficulty }}
{{ quiz.questions.count }} Fragen
{{ quiz.status }}
{% for i in '12345'|make_list %} {% if forloop.counter <= quiz.average_rating|floatformat:0|add:0 %} {% else %} {% endif %} {% endfor %} ({{ quiz.rating_count }})
{% if quiz.authors.all %}
{% for author in quiz.authors.all %} {{ author.username }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
{% if quiz.questions.count != 0 %} Spielen {% else %} Fürs Spielen ist min. 1 Frage nötig! {% endif %}
{% if quiz.user_id == request.user %} {% endif %}
{% endfor %}
{% if favorite_quizzes.paginator.num_pages > 1 %}
{% if favorite_quizzes.has_previous %} {% endif %} Seite {{ favorite_quizzes.number }} von {{ favorite_quizzes.paginator.num_pages }} {% if my_quizzes.has_next %} {% endif %}
{% endif %}
{% endif %}

Quiz von anderen Nutzern

{% if other_quizzes %}
{% for quiz in other_quizzes %}
{% if quiz.image %}
{% else %}
{% endif %} {% if user.is_authenticated %} {% if quiz.id not in favorite_quiz_ids %} {% else %} {% endif %} {% endif %}

{{ quiz.name }}

{{ quiz.description }}

{{ quiz.difficulty }}
{{ quiz.questions.count }} Fragen
{{ quiz.status }}
{% for i in '12345'|make_list %} {% if forloop.counter <= quiz.average_rating|floatformat:0|add:0 %} {% else %} {% endif %} {% endfor %} ({{ quiz.rating_count }})
{% if quiz.authors.all %}
{% for author in quiz.authors.all %} {{ author.username }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
{% if quiz.questions.count != 0 %} Spielen {% else %} Fürs Spielen ist min. 1 Frage nötig! {% endif %}
{% endfor %}
{% if other_quizzes.paginator.num_pages > 1 %}
{% if other_quizzes.has_previous %} {% endif %} Seite {{ other_quizzes.number }} von {{ other_quizzes.paginator.num_pages }} {% if other_quizzes.has_next %} {% endif %}
{% endif %}
{% else %}

Keine öffentlichen Quiz gefunden.

{% endif %} {% endblock content %}