{% extends "course/course-base.html" %} {% load crispy_forms_tags %} {% load static %} {% block title %} [{{ page_data.next_ordinal }}/{{ flow_session.page_count }}] {{title}} - {{ flow_desc.title}} - CourseFlow {% endblock %} {% block content %} {% if max_points %}
{{ max_points }} point{{ max_points|pluralize }}
{% endif %} {{ body|safe }} {% if form_html %}
{{ form_html|safe }} {% if may_change_graded_answer and will_receive_feedback %}
(You may still change your answer after you submit it.)
{% endif %}
{% endif %} {% if show_correctness and feedback %}

{{ feedback.feedback|safe }}

{% if feedback.bulk_feedback %}

{{ feedback.bulk_feedback|safe }}

{% endif %} {% if show_answer and correct_answer %}

{{ correct_answer|safe }}

{% endif %}
{% elif show_answer and correct_answer %} {# show only correct answer, without indication of correctness #}

{{ correct_answer|safe }}

{% endif %} {# {{{ change listening, navigation confirmation #} {# }}} #} {# {{{ expiration mode handling #} {# }}} #} {# {{{ codemirror resizing #} {# }}} #} {% endblock %} {# vim: set foldmethod=marker: #}