{% extends 'cjkcms/pages/web_page.html' %} {% load static wagtailcore_tags wagtailimages_tags bootstrap_icons %} {% block content_body %}
{% csrf_token %}
{% user_can_see course_page user 'SECURITY_QUIZZES' as can_see_quizzes %} {% if can_see_quizzes %} {% if course_page.navbar %} {% include 'lxp/snippets/activity_sidenav.html' %} {% endif %} {% if quiz.description %}
{{ quiz.description | richtext }}
{% elif quiz.summary %}
{{ quiz.summary | richtext }}
{% endif %} {% with blocks=self.content %} {% for block in blocks %} {% if block.is_item %} {% with 'lxp/quiz_blocks/'|add:block.block_type|add:'.html' as template %} {% include template %} {% endwith %} {% else %} {% with 'lxp/activity_blocks/'|add:block.block_type|add:'.html' as template %} {% include template %} {% endwith %} {% endif %} {% endfor %} {% endwith %}

You have scored %

{% else %}

You do not have permissions to see this task. Please sign in.

{% endif %}
{% endblock content_body %} {% block custom_assets %} {% if course_page.navbar %} {% endif %} {% endblock custom_assets %} {% block custom_scripts %} {% endblock custom_scripts %}