{% 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 c=currency %} {% blocktrans trimmed %} an amount of {{ c }}{{ hi }} today {% endblocktrans %} {% endwith %} {% if Constants.buttons == True %} {% else %} {% endif %}
{% trans "Option B:" %} {% with sure_payoff=sure_payoff c=currency %} {% blocktrans trimmed %} an amount of {{ c }}{{ sure_payoff }} in 12 months {% 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 %}