{{ 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 }}.

{{for p in player.in_all_rounds}} {{endfor}}
round your guess group average payoff
{{p.round_number}} {{p.guess}} {{p.group.two_thirds_avg}} {{p.payoff}}
{{ next_button }} {{ endblock }}