Test_Johanne/dictator_modif_class/templates/dictator_modif_class/Introduction.html

31 lines
1018 B
HTML
Raw Normal View History

2025-03-06 10:28:01 +01:00
{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
Game {{player.game_num}}
{% endblock %}
{% block content %}
{% include Constants.instructions_template %}
<br> <center> ------------------------- </center>
<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)"%}
{% next_button %}
{% endblock %}