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

You are the {{ player.role }} Player and you chose {{ player.choice.lower }}. The {{ other.role }} Player chose {{ other.choice.lower }}.

{% if session.config.display_all_history %} {% for a, b in players %} {% endfor %}
History of Play
Your Choice {{ other.role }}'s Choice Your Payoff
{{ a.choice }} {{ b.choice }} {{ a.payoff }}
{{ participant.payoff }}
{% else %} {% if player.round_number == 1 %}
History of Play
Your Choice {{ other.role }}'s Choice Your Payoff
{{ player.choice }} {{ other.choice }} {{ player.payoff }}
{{ participant.payoff }}
{% else %}
History of Play
Your Choice {{ other.role }}'s Choice Your Payoff
{{ p1_last.choice }} {{ p2_last.choice }} {{ p1_last.payoff }}
{{ player.choice }} {{ other.choice }} {{ player.payoff }}
{{ participant.payoff }}
{% endif %} {% endif %}
Column
Row Aay Bee
One (6, 2) (3, 5)
Two (3, 5) (5, 3)
{% if not subsession.end_round%}

You may now indicate your belief about what the other player will do on the next round using the slider below. Moving the slider towards one option signfies that you believe there is a higher probability that this will be the opponent's choice.

{{ if player.role == "Row" }} Aay {{ else }} One {{ endif }}
{{ if player.role == "Row" }} Bee {{ else }} Two {{ endif }}


{% next_button %} {% endif %} {% endblock %}