Start of the quizz on the backend

This commit is contained in:
2025-12-05 01:51:51 +01:00
parent 962e3e61f7
commit 0a8136dfb5
12 changed files with 20 additions and 29 deletions

View File

@@ -0,0 +1,10 @@
{% for q in questions %}
<div class="test" id="test1">
<h2>{{q.question}}</h2>
{% for a in q.answer%}
<label class="ans">{{a.answer}}<input id="tgl{{a.nb}}{{q.nb}}" type="checkbox" onclick=""></input></label><br>
{% endfor %}
<button class="ans" id="sub1" onclick="tog()">sub</button>
<p class="ans" id="answer1"><br></p><br>
</div>
{% endfor %}