{% extends "global/Page.html" %} {% load otree static %} {% block content %} {% if player.round_number == 1 %} Below you find the payoff Matrix of a prisoners Dilemma. Your Payoff is written first and the payoff of the other player is written second
Other Player You
Cooperate Defect
Cooperate {{ Constants.payoff_both_cooperate }} , {{ Constants.payoff_both_cooperate }} {{ Constants.payoff_cooperate_defect_low }} , {{ Constants.payoff_cooperate_defect_high }}
Defect {{ Constants.payoff_cooperate_defect_high }} , {{ Constants.payoff_cooperate_defect_low }} {{ Constants.payoff_both_defect }} , {{ Constants.payoff_both_defect }}
{% else %} You will not see the payoffs this round. Try to remember the payoffs from the last round and then make your decision. {% endif %} {{ formfield_errors 'defect' }} {% endblock %} {% block app_styles %} {% endblock %}