{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %}

It was Box {{ if box == 1}} O. {{ else }} G. {{ endif }}

Your assessment was:
{{ if box == 1}} "There is {{belief}}% chance that Box O was picked." {{ else }} "There is {{belief2}}% chance that Box G was picked." {{ endif }}

The 2 numbers drawn are {{ random_num1 }} and {{ random_num2 }}.

{{ if payoff_belief == 10 }}

Because {{ if box == 1}} {{belief}} {{ else }} {{belief2}} {{ endif }} is greater than either of the 2 numbers, you receive the $10 prize.

{{ elif payoff_belief == 0 }}

Because {{ if box == 1}} {{belief}} {{ else }} {{belief2}} {{ endif }} is less than both of the numbers, you receive $0.

{{ endif }} {{ if player.payment_stage == 1 }} {{if payoff_from_card > 0}}

Also, since you've drawn a No report + ${{ payoff_from_card}} card, you get an additional ${{payoff_from_card}}.

Therefore, with the show up fee ${{showup}}, your total reward today is ${{payoff}}.

{{elif payoff_from_card == 0}}

With ${{showup}} showup fee, your total reward today is ${{ payoff }}.

{{endif}} {{ elif player.payment_stage == 2 }}

With ${{showup}} showup fee, your total reward today is ${{ payoff }}.

{{ endif }} {{next_button}} {% endblock %}