{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Result: Round {{round_number}}
{% endblock %}
{% block content %}
{% if player.id_in_group == 2 %}
| The option chosen by computer |
{{ randomization_result }} |
| Your cost from the chosen option |
- {{ randomization_cost }} Tokens |
| The problem you are having |
Problem {{ problem }} |
| Is the problem solved? |
{% if player.treatment_final == player.problem %} Yes {% else %} No {% endif %} |
| Your income from problem solving |
{% if player.treatment_final == player.problem %} + 120 Tokens {% else %} + 20 Tokens {% endif %} |
| Your payoff from this round |
{{ payment }} Tokens |
{% endif %}
{% if player.id_in_group == 1 %}