{% 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}}

  • You offered the renter FIXED RENT WITH DISCOUNT contract with a discount value of {{ group.owner_discount }}

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

    Your payoff from this round is therefore {{group.owner_discount_rent}}
    {% else %} ACTION G.

    Your payoff from this round is therefore {{ Constants.rentG }}
    {% endif %} {% else %}
  • Round Number: {{ subsession.round_number}}
  • Your ID: {{ player.id_in_group}}

  • The owner offered you FIXED RENT WITH DISCOUNT contract with a discount value of {{ group.owner_discount }}

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

    Your payoff from this round is therefore {{group.renter_discount_profit}}
    {% else %} ACTION G.

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