diff --git a/django/templates/library/detail_quiz.html b/django/templates/library/detail_quiz.html
index 567707b..faca125 100644
--- a/django/templates/library/detail_quiz.html
+++ b/django/templates/library/detail_quiz.html
@@ -253,29 +253,28 @@
{% endif %}
-
+
+ Credits:
{% if quiz.credits %}
-
Credits (Quiz): {{ quiz.credits }}
-
-
+
+ {{ quiz.credits }}
+
{% endif %}
-
-
-
-
-
- {% for question in questions %}
-
+
+
+ {% for question in questions %}
+ {% if question.credits %}
+ -
+ {{ question.credits }}
+ (Frage: {{ forloop.counter }})
+
+ {% endif %}
+ {% endfor %}
+
+
-
- {% if question.credits %}
- - {{ question.credits }} (Frage: {{ forloop.counter }})
- {% endif %}
- {% endfor %}
-
-
{% endblock %}