{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}
Here were the numbers guessed:
{{ sorted_guesses }}
Two-thirds of the average of these numbers is {{ group.two_thirds_avg }}; the closest guess was {{ group.best_guess }}.
Your guess was {{ player.guess }}.
{% if player.is_winner %} {% if group.num_winners > 1 %} Therefore, you are one of the {{ group.num_winners }} winners who tied for the best guess. {% else %} Therefore, you win! {% endif %} {% else %} Therefore, you did not win. {% endif %} Your payoff is {{ player.payoff }}.
{% next_button %} {% include Constants.instructions_template %} {% endblock %}