{% extends "global/Page.html" %} {% load staticfiles otree %} {% load i18n %} {# ****************************************************************************************************************** #} {# *** STYLES *** #} {# ****************************************************************************************************************** #} {% block styles %} {% endblock %} {# ****************************************************************************************************************** #} {# *** SCRIPTS *** #} {# ****************************************************************************************************************** #} {% block scripts %} {% if Constants.enforce_consistency == True %} {% if Constants.one_choice_per_page == False and Constants.random_order == False %} {% endif %} {% endif %} {% endblock %} {# ****************************************************************************************************************** #} {# *** TITLE *** #} {# ****************************************************************************************************************** #} {% block title %} {% trans "Here is an Example with Candies" %} {% endblock %} {# ****************************************************************************************************************** #} {# *** CONTENT *** #} {# ****************************************************************************************************************** #} {% block content %}
{% if Constants.one_choice_per_page == True and Constants.progress_bar == True %}
{% endif %} {% if Constants.accept_reject == True and Constants.variation != 'sure_payoff' %}
Remember that all the monies here are in Kenyan Shillings. {% for i,f,p,hi,lo,sp in choices %} {% endfor %}
{% trans "Lottery" %} {% trans "Accept" %} {% trans "Reject" %}
{{ hi }} {% trans "candies if heads"}, {{ lo }} {% trans "if tails" %}
{% else %}
{% for i,f,p,hi,lo,sp in choices %} {% endfor %}
{% trans "Option A" %} {% trans "Option B" %}
{{ hi }} {% trans "candies" %} {% trans "if heads" %}, {% trans "0 if tails" %} {{ sp }} {% trans "candies for sure " %}
{% endif %}

{% endblock %}