{% extends "global/Page.html" %} {% load otree %} {% block title %} End of game and Final Results {% endblock %} {% block content %}

Your total payoff is selected randomly from the results of {{Constants.num_rounds}} rounds. The results of the first 5 rounds are not included in random selection. In previous rounds you earned:

    {% for i in list_of_all_payments %}
  1. {{i|c}}{% if forloop.counter < 6 %} *TRIAL ROUND* {%else%}{%endif%}
  2. {% endfor %}

As a result, in Game Three computer randomly selected payoffs from rounds {{round_number}}

Your total payoff of this game is {{round_earning}}.

{% next_button %} {% endblock %}