{% extends "global/Page.html" %} {% load staticfiles otree %} {% load i18n %} {# ****************************************************************************************************************** #} {# *** STYLES *** #} {# ****************************************************************************************************************** #} {% block styles %} {% endblock %} {# ****************************************************************************************************************** #} {# *** TITLE *** #} {# ****************************************************************************************************************** #} {% block title %} {% trans "Results from Candies Example" %} {% endblock %} {# ****************************************************************************************************************** #} {# *** CONTENT *** #} {# ****************************************************************************************************************** #} {% block content %}
{% blocktrans trimmed %} The computer has randomly selected, for your reward, one of the 10 choices of candies you made in the previous page {% endblocktrans %}
{% if Constants.accept_reject == True and Constants.variation != 'sure_payoff' %}

{% blocktrans trimmed with accept_reject=accept_reject %} As indicated above, you decided to {{ accept_reject }} this lottery. {% endblocktrans %}

{% else %}

{% blocktrans trimmed with option_to_pay=option_to_pay %} The choice selected by the computer is option {{ option_to_pay }}. {% endblocktrans %}

{% endif %} {% if option_to_pay == "A" %}

{% blocktrans trimmed %} Since option {{option_to_pay}} is still a lottery, you will need to flip a coin to determine the amount of candies you will receive. {% endblocktrans %}

{% else %}

Since option B is always a sure number of candies, you will receive this sure number of candies end of the study.

Please note that this is only an EXAMPLE so you won't receive actual candies

Please click next to continue. {% next_button %} {% endif %} {% endblock %}