{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Result: Round {{round_number}}
{% endblock %}
{% block content %}
| 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 %} |
| Base income |
+ 80 Tokens |
| Extra income from problem solving |
+ {{ altruism_payoff }} Tokens |
| Cost of diagnosis |
- {{cost}} Tokens |
| Your payoff for this round |
{{payment_expert}} Tokens |
{% next_button %}
{% endblock %}