{% extends "global/Page.html" %} {% load otree static %} {% block styles %} {% endblock %} {% block title %} Social Preferences – 1st step {% endblock %} {% block content %}
You play a game with another person. You are person B. Person A has 20 Euro, and decides how to split the money between you two. Once player A has made a suggested split, you (player B) can accept or reject it. If you reject it, both of you get 0 Euro. If you accept it, then both of you get player A‘s suggested split. Please indicate below, which suggested split you would accept or reject.

{% for field in form %} {% for payoff in payoff_list_player_A %} {% if forloop.counter == forloop.parentloop.counter %} {% endif %} {% endfor %} {% for payoff in payoff_list_player_B %} {% if forloop.counter == forloop.parentloop.counter %} {% endif %} {% endfor %} {% endfor %}
# A's Payoff B's Payoff Decision
{{ forloop.counter }}{{ payoff }}€{{ payoff }}€accept {{ field }} reject
{% next_button %}
{% endblock %}