{% extends "global/Page.html" %} {% load staticfiles otree %} {% load i18n %} {# ****************************************************************************************************************** #} {# *** STYLES *** #} {# ****************************************************************************************************************** #} {% block styles %} {% endblock %} {# ****************************************************************************************************************** #} {# *** TITLE *** #} {# ****************************************************************************************************************** #} {% block title %} {% trans "Results" %} {% endblock %} {# ****************************************************************************************************************** #} {# *** CONTENT *** #} {# ****************************************************************************************************************** #} {% block content %}
{% blocktrans trimmed %} You decided to choose the following lottery: {% endblocktrans %}

{% for i,lo,hi in lottery %} {% endfor %}
{% trans "Outcome A" %} {% trans "Outcome B" %}
{% trans "No." %} {% trans "Prob." %} {% trans "Payoff" %} {% trans "Prob." %} {% trans "Payoff" %} {% trans "Your Choice" %}
{{ index }} {{ prob_lo }} {{ lo }} {{ prob_hi }} {{ hi }}

{% blocktrans trimmed with hi_lo=hi_lo payoff=player.payoff %} A random draw determined that outcome {{ hi_lo }} has been realized.
Thus, your payoff from this task amounts to {{ payoff }}. {% endblocktrans %}
{% next_button %}
{% endblock %}