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

{% if player.role == 'Player 1'%} Your first choice was '{{ player.decision }}'. {% if player.decision == 'Out' %} The game ended here. {% else %} Player 2 chose '{{ opponent.decision }}'. {% if opponent.decision == 'Honor' %} The game ended here. {% else %} You then chose '{{ player.decision2 }}'. {% endif %} {% endif %} {% else %} Player 1 chose '{{ opponent.decision }}' {% if opponent.decision == 'Out' %} The game ended here. {% else %} and you chose '{{ player.decision }}'. {% if player.decision == 'Honor' %} The game ended here. {% else %} Player 1 then chose '{{ opponent.decision2 }}'. {% endif %} {% endif %} {% endif %} Thus, your payoff was {{ my_payoff }} and the other player's payoff was {{ opponent_payoff }}.

{% next_button %} {% endblock %}