{% extends "global/Page.html" %} {% load staticfiles otree %} {% load i18n %} {# ****************************************************************************************************************** #} {# *** STYLES *** #} {# ****************************************************************************************************************** #} {% block styles %} {% endblock %} {# ****************************************************************************************************************** #} {# *** TITLE *** #} {# ****************************************************************************************************************** #} {% block title %} {% trans "Task 1 - Results" %} {% endblock %} {# ****************************************************************************************************************** #} {# *** SCRIPTS *** #} {# ****************************************************************************************************************** #} {% block scripts %} {% endblock %} {# ****************************************************************************************************************** #} {# *** CONTENT *** #} {# ****************************************************************************************************************** #} {% block content %}

Thank you! That was task 1. From all your decisions in this task, the following decision from table {{round_to_pay}} was randomly chosen for payment:

{% trans "Option A" %} {% trans "Your Choice" %} {% trans "Option B" %}
{{ lot_hi }}{% trans " with a probability of " %}{{ prob_hi }},
or
{{ lot_lo }} {% trans " with a probability of " %}{{ prob_lo }}
{% if option_to_pay == 'A' %}
{% elif option_to_pay == 'B' %}
{% endif %}
{{ cert }} {% trans "guaranteed" %}

{% if option_to_pay == 'A' %} {% blocktrans %} As indicated above, you chose the lottery option {{ option_to_pay }} in this decision. For the chosen option, one of the two possible outcomes has been randomly realized based on the corresponding probabilities.
Your payoff in this task equals {{ payoff }}, and it will be paid today, after the study. {% endblocktrans %} {% elif option_to_pay == 'B' %} {% blocktrans trimmed with payoff=payoff%} As indicated above, you chose option {{ option_to_pay }} in this decision.
Your payoff in this task equals {{ payoff }}, and it will be paid today, after the study. {% endblocktrans %} {% endif %}

{% next_button %}
{% endblock %}