{% 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 {{ group.owner_contract}} and a discount of value {{group.owner_discount }} points

    The renter chose {{ group.renter_action }}.

    You earned {{ individual_discount_a }} and the renter earned {{ individual_discount_b }} .

    However, because this is a practice round, these outcomes will not accrue towards your total earnings.
    {% else %}
  • Round Number: {{ subsession.round_number}}
  • Your ID: {{ player.id_in_group}}

  • The owner offered you {{ group.owner_contract}} .

    The discount value offered was {{group.owner_discount }} points.

    You chose {{ group.renter_action }}.

    You earned {{ individual_discount_b }} and the owner earned {{ individual_discount_a }} .

    However, because this is a practice round, these outcomes will not accrue towards your total earnings.
    {% endif %}
    {% next_button %} {% endblock %}