{% extends "global/Base.html" %} {% load staticfiles otree_tags %} {% block title %} Results {% endblock %} {% block content %}
You picked {{player.guess_value}}. Others picked {% if other_guesses_count > 1%} {% for g in other_guesses %} {% if not forloop.last %} {{ g }}, {% else %} and {{ g }}. {% endif %} {% endfor %} {% else %} {% for g in other_guesses %} {{ g }}. {% endfor %} {% endif %} The two-third of the average was {{ two_third_average|floatformat:"-4" }} and the closest was {{group.best_guess}}. {% if group.tie %} There are {{ winners_cnt }} participants who picked this number and you {% if player.is_winner %} were {% else %} were not {% endif %} one of them. As a result, you received {{ player.payoff }}. {% else %} As a result, you {% if player.is_winner %} were {% else %} were not {% endif %} the winner and received {{ player.payoff}}. {% endif %}
{% next_button %} {% include "beauty_class/Instructions.html" %} {% endblock %}