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

{% if player.round_number != 3 %} {% if player.role == 'Employer' %} The applicant was a {{ group.type }} type and they chose to take {{ opponent_choice }}. You chose to give the applicant a {{ player.choice }}. Thus, your payoff is {{ player_payoff }} and the applicant's payoff was {{ opponent_payoff }}. {% else %} As a {{ group.type }} type applicant, you chose to take {{ player.choice }}. Your employer observed this decision and chose to offer you a {{ opponent_choice }}. Thus, your payoff is {{ player_payoff }}. {% endif %}
Slacker (probability 0.6)
Employer Easy Difficult
Manager (0, 100) (0, 50)
Clerk (60, 60) (60, 10)
Go-getter (probability 0.4)
Employer Easy Difficult
Manager (100, 100) (100, 80)
Clerk (60, 60) (60, 40)
{% else %} {% if player.role == 'Employer' %} The applicant was a {{ group.type }} and sent the message, 'I am a {{ opponent_choice }}.' You chose to give the applicant a {{ player.choice }}. Thus, your payoff is {{ player_payoff }}. {% else %} As a {{ group.type }} type applicant, you chose to send the message, 'I am a {{ player.choice }}.' Your employer received the message and chose to offer you a {{ opponent_choice }}. Thus, your payoff is {{ player_payoff }}. {% endif %}
Slacker (probability 0.6)
Employer Manager (0, 100)
Clerk (60, 60)
Go-getter (probability 0.6)
Employer Manager (100, 100)
Clerk (60, 60)
{% endif %}

{% next_button %} {% endblock %}