{% extends "global/Page.html" %} {% load staticfiles otree %} {% load i18n %} {# ****************************************************************************************************************** #} {# *** STYLES *** #} {# ****************************************************************************************************************** #} {% block styles %} {% endblock %} {# ****************************************************************************************************************** #} {# *** TITLE *** #} {# ****************************************************************************************************************** #} {% block title %} {% trans "Your Decision" %} {% endblock %} {# ****************************************************************************************************************** #} {# *** CONTENT *** #} {# ****************************************************************************************************************** #} {% block content %}
{% if Constants.progress_bar == True %}
{% endif %}
{% trans "What do you prefer?" %}
{% if Constants.indifference == True %} {% endif %}
{% trans "Option A:" %} {% with hi=hi lo=lo p_hi=p_hi p_lo=p_lo %} {% blocktrans trimmed %} a {{ p_hi }} chance of winning {{ hi }} and
a {{ p_lo }} chance of winning {{ lo }} {% endblocktrans %} {% endwith %}
{% if Constants.buttons == True %} {% else %} {% endif %}
{% trans "Option B:" %} {% with sure_payoff=sure_payoff %} {% blocktrans trimmed %} an amount of {{ sure_payoff }} as a sure payment {% endblocktrans %} {% endwith %} {% if Constants.buttons == True %} {% else %} {% endif %}
{% blocktrans trimmed %} I'm indifferent between Option A and Option B {% endblocktrans %} {% if Constants.buttons == True %} {% else %} {% endif %}
{% if Constants.buttons == False %} {% next_button %} {% endif %} {% endblock %}