{% extends "global/Page.html" %} {% load otree %} {% block title %} Part 2: Game {{ player.match }}, Round {{ player.round_in_match }} – Make Your Choice! {% endblock %} {% block styles %} {% endblock %} {% block content %}

Your Rule

{% if salience %} {% if chosen_strategy %} Always choose A {% else %} {% if complex_treatment %} In rounds 1, 2 and 3 choose B. After round 3: choose A if your counterpart chose A in all of the previous 3 rounds; otherwise choose B {% else %} In round 1 choose B. After round 1: choose whatever your counterpart chose last round {% endif %} {% endif %} {% else %} {% if chosen_strategy %} Rule 1 {% else %} Rule 2 {% endif %} {% endif %}

REMINDER: The computer will automatically perform this rule for you.


Your Choice in this Round (Round {{ player.round_in_match }})

Following your rule, your action (implemented by computer) in this round is: {% if action_A %} A {% else %} B {% endif %}

{% if show_history %}
Round History
{% for p in player_in_previous_rounds_reverse %} {% if p.checkaction %} {% else %} {% endif %} {% endfor %}
Round Counterpart Choice Your Choice
{{ p.round_in_match }} {{ p.counterpartdecision }}{{ p.decision }}{{ p.decision }}
{% endif %} {% endblock %}