{% extends 'base.html' %} {% block content %} {% load static %}
{{ quiz.description }} Schwierigkeit: {{ quiz.difficulty }} Anzahl der Fragen: {{ quiz.question.count }} Status: {{ quiz.status }} Bewertung: {% 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 %} Autor(en): {% for author in quiz.authors.all %} {{ author.username }}{% if not forloop.last %}, {% endif %} {% endfor %}
{{ quiz.description }} Schwierigkeit: {{ quiz.difficulty }} Anzahl der Fragen: {{ quiz.question.count }} Erstellt am: {{ quiz.creation_date }}
Ursprünglich erstellt von: {{ quiz.original_creator }}