{% extends "manage.html" %} {% block pagetitle %} Statistics for {{ quiz.description }}{% endblock pagetitle %} {% block content %}
{% for attempt in attempts %}

Attempt {{ attempt }}

{% endfor %}
{% if question_stats %}

Total number of participants: {{ total }}

{% for question, value in question_stats.items %} {% endfor %}
QuestionTypeTotalAnswered
{{ question.summary }}{{ question.type }}{{value.1}}{{ value.0 }} ({% widthratio value.0 value.1 100 %}%)
{% endif %}
{% endblock %}