{% extends "global/Page.html" %} {% load otree static%}
{% block title %}
Result
{% endblock %}
{% block content %}
You are in Round {{player.round_number}}.
{% if player.id_in_group == 1 %}
You proposed {{group.proposed}} to Player 2.
{% endif %}
{% if player.id_in_group == 2 %}
Player 1 proposed {{player.payoff}} to You.
{% endif %}
{% if group.accept == 1 %}
Player 2 has accepted the proposal.
{% endif %}
{% if group.accept == 0 %}
Player 2 has rejected the proposal.
{% endif %}
Your payoff from this round {{player.payoff}}.
{% next_button %}
{% endblock %}