{% extends "global/Base.html" %} {% load staticfiles otree_tags %} {% block title %} Decision {{round }} of {{num_questions}}
{% endblock %} {% block content %}
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 %}
{% next_button %}
{% endblock %}