{% 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 %}
Your recommended solution Solution {{ recommended_solution }}
The client actually received Solution {{ actual_solution }}
The client's problem Problem {{ problem }}
Is the problem solved? {% if player.treatment_final == player.problem %} Yes {% else %} No {% endif %}
Your income + 120 Tokens
Your cost - {{cost}} Tokens
Your final payoff for this round {{payment}} Tokens
{% endif %} {% next_button %} {% endblock %}