{% extends 'base.html' %} {% load static %} {% load humanize %} {% block extra_css %} {% endblock %} {% block content %} {% block head %} {% include 'library/head.html' %} {% endblock %}
{% if user.is_authenticated %} Anzahl aller Ergebnisse: {{ total_all_found }}
(verschiedene: {{ total_all }}) {% else %} Anzahl aller Ergebnisse: {{ total_all_found }}
{% endif %}
{% if user.is_authenticated %}

Alle ({{ total_all }})

Meine Quizze ({{ total_my }}) Meine Favoriten ({{ total_favorite }})
{% endif %}

Alle

{% if all_quizzes %}
{% for quiz in all_quizzes %}
{% if quiz.image %}
{% else %}
{{ quiz.name }}
{% 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 }}
{% if quiz.rating_count > 0 %} {% for i in '12345'|make_list %} {% if forloop.counter <= quiz.average_rating|floatformat:0|add:0 %} {% else %} {% endif %} {% endfor %} ({{ quiz.rating_count }}) {% else %} Noch keine Bewertungen {% endif %}
{% if quiz.published_at != None %}
{{ quiz.published_at |naturaltime }} erst. veröffentlicht
{% 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 all_quizzes.paginator.num_pages > 1 %}
{% if all_quizzes.has_previous %} {% endif %} Seite {{ all_quizzes.number }} von {{ all_quizzes.paginator.num_pages }} {% if all_quizzes.has_next %} {% endif %}
{% endif %}
{% else %}

Keine Quiz gefunden.

{% endif %} {% endblock content %}