{% 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 of {{group.owner_discount }} ECU

    The renter chose {{ group.renter_action }}.

    You earned 15 points and the renter earned 10 points .

    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}} with a discount of {{group.owner_discount }} ECU

    You chose {{ group.renter_action }}.

    You earned 10 points and the owner earned 15 points .

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