{% 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 would you prefer?" %}
{% if Constants.indifference == True %} {% endif %}
{% trans "Option A:" %} {% blocktrans trimmed with fixed_payoff=fixed_payoff %} {{ fixed_payoff }} today {% endblocktrans %} {% if Constants.buttons == True %} {% else %} {% endif %}
{% trans "Option B:" %} {% with time_payoff=time_payoff %} {% blocktrans trimmed %} {{ time_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 %}