32 lines
992 B
HTML
32 lines
992 B
HTML
{% load otree %}
|
|
|
|
{% block title %}
|
|
Game {{player.game_num}}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include Constants.instructions_template %}
|
|
|
|
<div class="card bg-light m-3">
|
|
<div class="card-body">
|
|
|
|
<p>
|
|
<h3>Comprehension Test</h3>
|
|
|
|
<br> Q1. If you are named <b>"dictator" (player 1)</b>, your starting amount is 100 POINTs,
|
|
S = 1, G = 1, and you choose to give 2 to your partner (player 2), what is your payoff? What about your partner's?
|
|
|
|
<br> {% formfield player.r1 label="You gain (POINTs)"%}
|
|
{% formfield player.r2 label="Your partner gains (POINTs)"%}
|
|
<br> Q2. If you <b>are not named "dictator" (player 2)</b>, and your partner's (player 1) starting
|
|
amount is 60 POINTs, S = 2, and G = 1. If your partner decides to give you 5,
|
|
what is your payoff? What about your partner's?
|
|
<br> {% formfield player.r3 label="You gain (POINTs)"%}
|
|
{% formfield player.r4 label="Your partner gains (POINTs)"%}
|
|
|
|
</div></div>
|
|
{% next_button %}
|
|
|
|
{% endblock %}
|