{% extends "templates/base.html" %} {% block title %} {{ _("Quiz List") }} {% endblock %} {% block content %}
{{ Header() }} {% if quiz_list | length %} {{ QuizList(quiz_list) }} {% else %} {{ EmptyState() }} {% endif %}
{% endblock %} {% macro Header() %}
{{ _("Quiz List") }}
{{ _("Add Quiz") }}
{% endmacro %} {% macro QuizList(quiz_list) %}
{% endmacro %} {% macro EmptyState() %}
{{ _("You have not created any quiz yet.") }}
{{ _("Create a quiz and add it to your course to engage your users.") }}
{% endmacro %}