summaryrefslogtreecommitdiff
path: root/templates/exam/user_data.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/exam/user_data.html')
-rw-r--r--templates/exam/user_data.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/exam/user_data.html b/templates/exam/user_data.html
index 77de5ce..9fb442a 100644
--- a/templates/exam/user_data.html
+++ b/templates/exam/user_data.html
@@ -45,12 +45,12 @@ User IP address: {{ paper.user_ip }}
<p> Choices:
{% for option in question.options.strip.splitlines %} {{option}}, {% endfor %}
</p>
-<p>Student answer: {{ answers.0|safe }}</p>
+<p>Student answer: {{ answers.0 }}</p>
{% else %}{# non-mcq questions #}
<pre>
{% for answer in answers %}################################################################################
-{{ answer.answer.strip|safe }}
-# Autocheck: {{ answer.error|safe }}
+{{ answer.answer.strip }}
+# Autocheck: {{ answer.error }}
{% endfor %}</pre>
{% endif %}
{% with answers|last as answer %}