{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %}

{% if same_choice %} Both of you chose {% if my_decision == "L" %} the left side. {% else %} the right side. {% endif %} {% else %} You chose {% if my_decision == "L" %} the left side {% else %} the right side {% endif %} and the other participant chose {% if opponent_decision == "L" %} the left side. {% else %} the right side. {% endif %} {% endif %}

As a result, you earned {{ player.trial_payoff }} based on your and the other player's decisions. This does not sums to your final payoff. The trial is finished, you will now do the activity.

{% next_button %} {% endblock %}