{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}

You answered {{ player.num_correct }} questions correctly out of {{ question_total }} total questions.

{% if player.math == 'multiplication' %} The following table ranks the performance of the players in your group based on questions answered correctly:

{% for name in rank1 %} {% endfor %} {% for name in rank2 %} {% endfor %} {% for name in rank3 %} {% endfor %} {% for name in rank4 %} {% endfor %}
Rank Name
1 {{ name }}
2 {{ name }}
3 {{ name }}
4 {{ name }}
{% endif %}

{% next_button %} {% endblock %}