credits
This commit is contained in:
@@ -253,29 +253,28 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex">
|
<div class="flex flex-col max-w-full">
|
||||||
|
Credits:
|
||||||
{% if quiz.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 %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flex">
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
|
<div class="flex flex-col max-w-full">
|
||||||
|
<ul class="space-y-2">
|
||||||
{% for question in questions %}
|
{% for question in questions %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% if question.credits %}
|
{% 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>
|
<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 %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
Reference in New Issue
Block a user