{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
Part 2: Game {{ player.match }}– Choose Your Rule
{% endblock %}
{% block styles %}
{% endblock %}
{% block content %}
The Payment Table
|
|
Counterpart's Action |
|
|
A |
B |
| Your Action |
A |
{{Constants.both_defect_payoff}}, {{Constants.both_defect_payoff}} |
{% if complex_treatment %}
{{Constants.betray_payoff}}, {{ Constants.betrayed_payoff_complex }} |
{% else %}
{{Constants.betray_payoff}}, {{ Constants.betrayed_payoff_simple }} |
{% endif %}
| B |
{% if complex_treatment %}
{{ Constants.betrayed_payoff_complex }}, {{Constants.betray_payoff}} |
{% else %}
{{ Constants.betrayed_payoff_simple }}, {{Constants.betray_payoff}} |
{% endif %}
{{Constants.both_cooperate_payoff}}, {{Constants.both_cooperate_payoff}} |
The Rules Table
{% if complex_treatment %}
|
|
Counterpart's Rule |
|
|
{% if salience %}
Always choose A |
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 %}
Rule 1 |
Rule 2 |
{% endif %}
| Your Rule |
{% if salience %}
Always choose A |
{% else %}
Rule 1 |
{% endif %}
{% if computation %}
?, ? |
?, ? |
{% else %}
{{Constants.AD_both}}, {{Constants.AD_both}} |
{{Constants.ADTF3T}}, {{ Constants.TF3TAD }} |
{% endif %}
{% if salience %}
| 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 %}
Rule 2 |
{% endif %}
{% if computation %}
?, ? |
?, ? |
{% else %}
{{ Constants.TF3TAD }}, {{Constants.ADTF3T}} |
{{Constants.TF3T_both}}, {{Constants.TF3T_both}} |
{% endif %}
{% else %}
{% endif %}
Please choose your rule and then click Submit.
{{ form.strategy.errors }}
{% endblock %}