{% if sample.campaign.quizz_mode %}
Results for {{sample.campaign.title}} quizz ‐ Your score : {{score}}%
{% else %}
Your Answers for {{sample.campaign.title}}
{% endif %}
Description
{{sample.campaign.description}}
{% for answer in answers %}
{{answer.question.text}}
{% if answer.question.choices %}
{% for choice in answer.question.choices %}
{{choice.0}}
{% if sample.campaign.quizz_mode %}
{% if choice.0 == answer.question.get_correct_answer %}
V
{% else %}
{% if choice.0 == answer.measured_text %}
X
{% endif %}
{% endif %}
{% endif %}