{% load i18n %} {% if previous.answers %} {% if user_was_incorrect %}
{% trans "You answered the above question incorrectly" %}
{% endif %} {% for answer in previous.answers %} {% if answer.correct %} {% else %} {% endif %} {% endfor %}
{{ answer.content }} {% trans "This is the correct answer" %}
{{ answer.content }} {% if previous.question_type.MCQuestion %} {% if answer.id|add:"0" == previous.previous_answer|add:"0" %} {% trans "This was your answer." %} {% endif %} {% endif %}
{% endif %}