{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %} {% if player.id_in_group == 1 %}
  • Round Number: {{ subsession.round_number}}
  • Your ID: {{ player.id_in_group}}
  • {% if group.owner_penalty == True%}
    You offered the renter FIXED RENT contract and imposed a penalty on him.

    The renter chose {% if group.renter_action == True %} ACTION D.

    Your payoff from this round is therefore {{Constants.rentD}}

    {% else %} ACTION G.

    Your payoff from this round is therefore {{ Constants.rentG}}
    {% endif %} {% else %}
    You offered the renter FIXED RENT contract and did not impose a penalty on him.

    The renter chose {% if group.renter_action == True %} ACTION D.

    Your payoff from this round is therefore {{ Constants.rentD}}

    {% else %} ACTION G.

    Your payoff from this round is therefore {{ Constants.rentG}}
    {% endif %} {% endif %} {% else %}
  • Round Number: {{ subsession.round_number}}
  • Your ID: {{ player.id_in_group}}
  • {% if group.owner_contract == True %} {% if group.owner_penalty == True%}
    The owner offered you a FIXED RENT contract and imposed a penalty on you.

    You chose {% if group.renter_action == True %} ACTION D.

    Your payoff from this round is therefore {{Constants.profitD}}

    {% else %} ACTION G.

    Your payoff from this round is therefore {{ Constants.profitD}}
    {% endif %} {% else %}
    The owner offered you a FIXED RENT contract and did not impose a penalty on you.

    You chose {% if group.renter_action == True %} ACTION D.

    Your payoff from this round is therefore {{ Constants.profitD}}
    {% else %} ACTION G.

    Your payoff from this round is therefore {{Constants.profitG}}
    {% endif %} {% endif %} {% endif %} {% endif %}
    {% next_button %} {% endblock %}