{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results: Stage {{ player.round_number }} {% endblock %} {% block content %}
{% if player.role == 'Player 1' %} You chose '{{ player.decision }}'. {% if player.decision == 'Out' %} Player 2 could not make a choice. {% else %} Player 2 chose '{{ opponent.decision }}'. {% endif %} {% else %} Player 1 chose '{{ opponent.decision }}' {% if opponent.decision == 'Out' %} and you could not make a choice. {% else %} and you chose '{{ player.decision }}'. {% endif %} {% endif %} Thus, your payoff was {{ my_payoff }} and the other player's payoff was {{ opponent_payoff }}.
{% if player.round_number == 1 %}
{% else %}
{% endif %}
{% next_button %}
{% endblock %}