{% extends "site_base.html" %} {% block head_title %}{{ title }}{% endblock %} {% block body_class %}two-choice-quiz{% endblock %} {% block body %}

{{ title }} COMPLETED

{% if description %}
{{ description }}
{% endif %}
{% for question,answer in results %} {% endfor %}
{% include answer_template with question=question.0 %} {{ question.2 }} {% if answer == question.2 %} Correct! {% elif answer == None %} Didn't know {% else %} You said {{ answer }} {% endif %}
{% csrf_token %}
Return to Activity List
{% endblock %}