{% extends "global/Page.html" %} {% load otree static %} {% block title %} Task {{round}} of {{num_q}}
Decision Screen (1/2)

{% endblock %} {% block content %} {% if player.lottery_amount < 0 %}

You have a budget of ${{abs_lv}}. {% endif %}
{% for prob, sum, abssum in player.current_lottery %} With probability {{ prob }}% : {% if sum > 0 %} Get {% elif sum < 0 %} Lose {% elif sum == 0 and player.lottery_amount > 0 %} Get {% elif sum == 0 and player.lottery_amount < 0 %} Lose {% endif %} $ {{ abssum }}
{% endfor %}

Which certain {% if player.lottery_amount > 0 %} payment {% else %} loss {% endif %} is worth as much to you as this lottery?

{% if player.lottery_amount > 0 %} Getting {% else %} Losing {% endif %} $ with certainty is worth as much to me as this lottery.

{% next_button %}
{% endblock %}