{% extends "global/Page.html" %} {% load staticfiles otree %} {% load i18n %} {# ****************************************************************************************************************** #} {# *** STYLES *** #} {# ****************************************************************************************************************** #} {% block styles %} {% endblock %} {# ****************************************************************************************************************** #} {# *** TITLE *** #} {# ****************************************************************************************************************** #} {% block title %} {% trans "Results" %} {% endblock %} {# ****************************************************************************************************************** #} {# *** CONTENT *** #} {# ****************************************************************************************************************** #} {% block content %}
{% blocktrans trimmed %} The following decision was randomly chosen for your payment: {% endblocktrans %}

{% if Constants.accept_reject == True and Constants.variation != 'sure_payoff' %}
{% for i,f,p,hi,lo,sp in choice_to_pay %} {% endfor %}
{% trans "Lottery" %} {% trans "Accept" %} {% trans "Reject" %}
{{ hi }} {% trans "with a probability of " %}{{ p|floatformat:1 }}, {{ lo }} {% trans "otherwise" %} {% if option_to_pay == 'A' %}
{% elif option_to_pay == 'B' %}
{% endif %}
{% if option_to_pay == 'A' %}
{% elif option_to_pay == 'B' %}
{% endif %}
{% else %}
{% for i,f,p,hi,lo,sp in choice_to_pay %} {% endfor %}
{% trans "Option A" %} {% trans "Option B" %}
{{ hi }} {% trans "with a probability of " %}{{ p|floatformat:1 }},
{{ lo }} {% trans "otherwise" %}
{% if option_to_pay == 'A' %}
{% elif option_to_pay == 'B' %}
{% endif %}
{{ sp }} {% trans "with a probability of " %}100.0%
{% trans "(sure payoff)" %}
{% endif %}
{% 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 %} As indicated above, you decided to opt for option {{ option_to_pay }} in this decision. {% endblocktrans %}

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

{% blocktrans trimmed %} For the lottery, one of the two possible outcomes has been randomly realized based on the corresponding probabilities. {% endblocktrans %}

{% endif %}

{% blocktrans trimmed with payoff=payoff %} Your payoff in this task equals {{ payoff }}. {% endblocktrans %}

{% next_button %} {% endblock %}