{% extends "global/Base.html" %} {% load staticfiles otree_tags %} {% block title %} Decision {{round }} of {{num_questions}}
| Option A | Option B | |
|
{% for prob, sum in player.current_option_a %}
With probability {{ prob }}% :
{% if sum > 0 %}
Get
{% elif sum < 0 %}
Lose
{% elif sum == 0 %}
Get
{% endif %}
$ {{ sum | abs }} {% endfor %} |
{% for prob, sum in player.current_option_b %}
With probability {{ prob }}% :
{% if sum > 0 %}
Get
{% elif sum < 0 %}
Lose
{% elif sum == 0 %}
Get
{% endif %}
$ {{ sum | abs }} {% endfor %} |