{% extends "global/Page.html" %} {% load otree %} {% block title %}First round{% endblock %} {% block content %} {% if player.round_number < 2 %}

You have been paired with a match.

{% endif %} {% if player.round_number > 1 %}

You have been paired with a new match. The record of your match is: {% for entry in record_display_opponent %} {% endfor %}
Round 1 Round 2
{{ entry.0 }}, then {{ entry.2 }} after the other played {{ entry.1 }}


{% endif %} {% if player.condition_public %} {% else %} {% endif %} {% if condition_opponent %} {% else %} {% endif %}
Your actions are public Your actions will enter your record
Your actions are private Your actions will not enter your record
Your match's actions are public Your match's actions will enter their record
Your actions are private Your match's actions will not enter their record


You can now choose your action for the first round. Click the button to look up the payoffs.

Your match's choice
cooperate defect avoid
Your choice cooperate Both get {{ Constants.cc_payoff }} You get {{ Constants.cd_payoff }}
Your match gets {{ Constants.dc_payoff }}
Both get {{ Constants.a_payoff }}
defect You get {{ Constants.dc_payoff }}
Your match gets {{ Constants.cd_payoff }}
Both get {{ Constants.dd_payoff }} Both get {{ Constants.a_payoff }}
avoid Both get {{ Constants.a_payoff }} Both get {{ Constants.a_payoff }} Both get {{ Constants.a_payoff }}

{% formfields %} {% next_button %} {% endblock %}