{% extends "global/Page.html" %} {% load otree %} {% block title %} Results Summary {% endblock %} {% block content %} {% for p in player_in_all_rounds %} {% endfor %}
Round Gamble and outcome
{{ p.round_number }} You {% if p.option_choice_1 and p.option_choice_2 %} gambled twice and {% elif p.option_choice_1 or p.option_choice_2 %} gambled once and {% else %} did not gamble and {% endif %} earned {% if p.final < p.w0 %} ${{ p.final }}0 {% elif p.final > p.w0 %} ${{ p.final }}0 {% else %} ${{ p.final }}0 {% endif %}
{% if subsession.round_number == Constants.num_rounds %} {% else %} {% endif %} {% endblock %}