{% extends 'base.html' %} {% block title %}All Quizzes{% endblock %} {% block content %}

List of quizzes

{% if quiz_list %} {% for quiz in quiz_list %} {% endfor %}
Title Category Exam Single attempt
{{ quiz.title }} {{ quiz.category }} {{ quiz.exam_paper }} {{ quiz.single_attempt }} View details
{% else %}

There are no available quizzes.

{% endif %} {% endblock %}