{% extends "global/Page.html" %} {% load staticfiles otree_tags %} {% block title %} Results {% endblock %} {% block content %}
{% if player.id_in_group == 2 %} You were given {{ Constants.endowment }}, out of which you offered {{ group.p2_offered }} to the other player. {% if group.offer_accepted %} Your offer was accepted . {% else %} Your offer was rejected . {% endif %} {% elif player.id_in_group == 1 %} Players from Group 2 offered you a total amount of {{ total_offered }}. {% if group.offer_accepted %} You accepted the offer. {% else %} You rejected the offer. {% endif %} {% else %} The player you are matched with in Game 2 is from a group that offered ยข{{ group.stimulated_average }} on average. {% endif %}
Your payoff is {{ player.payoff }}.
{# {% if player.round_number == Constants.num_rounds %}#} {# The average amount shared by your group is {{ average_offered }}.#} {# {% endif %}#} {% next_button %} {% endblock %}