You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
566 B
16 lines
566 B
<h2>Liste des Quiz</h2>
|
|
<div class="quiz-container">
|
|
{% for quiz in quizs %}
|
|
<div class="quizCard">
|
|
<a href="{{ racine }}/quiz/{{ quiz.id_quiz }}" class="linkQuiz">
|
|
<img src="{{ quiz.imgPath }}" alt="Image du quiz {{ quiz.title }}">
|
|
<h3>{{ quiz.title }} ({{ quiz.nb_quest }} questions)</h3>
|
|
</a>
|
|
</div>
|
|
{% else %}
|
|
<h3>Aucun quiz disponible pour le moment.</h3>
|
|
{% endfor %}
|
|
</div>
|
|
</body>
|
|
</html>
|