{% extends "global/Page.html" %} {% load otree static %} {% block styles %} {% endblock %} {% block title %} Part 1 - Results {% endblock %} {% block content %}
Time: {{ time }} seconds.
The randomly drawn price for the lottery ticket is {{ player.info_value }} cents.
The maximum amount of money you are willing to pay is {{ player.offer }} cents, which is {% if player.offer >= player.info_value %} higher than (or equal to) {% else %} lower than {% endif %} the randomly drawn price.
Hence, {% if player.offer >= player.info_value %}
{{ player.info_value }} cents
{% else %}
no money
{% endif %}
will be deducted from your completion payment,
{% if player.offer >= player.info_value %}
and you get the lottery ticket.
The outcome of the lottery will be determined at the end of the study
with the following procedure:
The computer program will draw a random number between 1 and 10.
If that number is equal or lower than 4, the lottery ticket pays $2.00, otherwise nothing ($0.00).
{% else %}
and you do not get the lottery ticket.
{% endif %}
Please click "Next" to continue.
{% next_button %} {% endblock %}