{% extends "global/Page.html" %} {% load otree static %} {% block title %} Your Player Information: {% if player.id_in_group == 1 %} Expert {% endif %} {% if player.id_in_group == 2 %} Client {% endif %} {% endblock %} {% block content %} {% if player.id_in_group == 2 %}

You are assigned to the role of the Client.

{% if player.activeness == 1 %} In this game, you are randomly assigned as an ACTIVE client. This means that you do NOT have to follow your matched expert's recommended solution. After seeing your matched expert's solution recommendation, you will choose the actual solution by yourself.

You will remain being ACTIVE for all rounds in today's experiment.

{% endif %} {% if player.activeness == 0 %} In this game, you are randomly assigned as a PASSIVE client. This means that you have to always follow the expert's recommended solution.

You will remain being PASSIVE for all rounds in today's experiment.

{% endif %} {% endif %} {% if player.id_in_group == 1 %}

You are assigned to the role of the Expert.

In this game, your assigned contract is {% if player.expert_altruism == 1 %} 100-Contract. This means that if your matched client's problem is solved, you will receive extra 100 tokens.{% endif %} {% if player.expert_altruism == 0.6 %} 60-Contract. This means that if your matched client's problem is solved, you will receive extra 60 tokens. {% endif %} {% if player.expert_altruism == 0.2 %} 20-Contract. This means that if your matched client's problem is solved, you will receive extra 20 tokens. {% endif %} {% if player.expert_altruism == 0 %} 0-Contract. This means that if your matched client's problem is solved, you will receive extra 0 tokens. {% endif %}

Your role and your contract will remain the same for all rounds in today's experiment.

{% endif %}

Next, you will go over an overview about the game procedure, and then answer several challenge questions to verify your comprehension of the game.



{% next_button %} {% endblock %}