This commit is contained in:
ben8
2025-06-27 16:29:00 +02:00
parent c912b63d8d
commit 0fe5c0cac3

View File

@@ -253,29 +253,28 @@
{% endif %}
</div>
<div class="flex">
<div class="flex flex-col max-w-full">
Credits:
{% if quiz.credits %}
<p class="text-gray-600 mb-2">Credits (Quiz): <span class="text-blue-600 font-bold overflow-auto break-words">{{ quiz.credits }}</span></p>
<p class="text-gray-600 mb-2 w-full break-words">
<span class="font-bold break-words">{{ quiz.credits }}</span>
</p>
{% endif %}
</div>
<div class="flex">
<ul>
{% for question in questions %}
<div class="flex flex-col max-w-full">
<ul class="space-y-2">
{% for question in questions %}
{% if question.credits %}
<li class="text-gray-600 mb-2 w-full break-words font-bold break-words">
{{ question.credits }}
<span class="font-medium text-gray-500 break-words">(Frage: {{ forloop.counter }})</span>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% if question.credits %}
<li class="text-blue-600 font-bold overflow-auto break-words"> {{ question.credits }}<span class="font-medium text-gray-500"> (Frage: {{ forloop.counter }})</span> </li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
{% endblock %}