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

{{ title }} COMPLETED

{{ description }}
{% for result in results %}

{{ result.0 }}

{% for a,b in result.1 %} {% endfor %}
{{ a.0 }} {{ a.1 }} {% if a.1 == b %} Correct! {% elif b == None %} Didn't know {% else %} You said {{ b }} {% endif %}
{% endfor %}
{% csrf_token %}
Return to Activity List
{% endblock %}