{% extends "otree/WaitPage.html" %} {% load staticfiles otree_tags %} {% block title %} Please wait while your opponent makes their decision {% endblock %} {% block content %} Instructions

This is the game you will be playing this round:
The two players are Player 1 and Player 2.
Each player only has two options in each round: A or B
The payoffs for each player in a single round are described below.

The above payoff information can be visualized in the payoff matrix below:

Player 2
A B
Player 1 A 4, 4 0, {% if subsession.round_number < 4 %} 2 {% else %} 3 {% endif %}
B 1, 0 1, {% if subsession.round_number < 4 %} 2 {% else %} 3 {% endif %}


{% if subsession.round_number > 12 %}

Round history

{% for p in player_in_previous_rounds %} {% for q in opponent_in_previous_rounds %} {% if p.round_number == q.round_number %} {% else %} {% endif %} {% endfor %} {% endfor %}
Round Your decision Opponent's decision Your payoff Opponent's payoff
{{ p.round_number }} {{p.prey_hunted}} {{q.prey_hunted}} {{p.payoff}} {{q.payoff}}
{% endif %}
{% if player.role == 'Player 1' %}

In all rounds, you are {{ player.role }}.

{% else %}

In all rounds, you are {{ player.role }}.

{% endif %}
{% endblock %} {% block app_styles %} {% endblock %}