31 lines
871 B
HTML
31 lines
871 B
HTML
{% 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 questionnaire</h3>
|
|
|
|
<br> Q1. If your starting amount is 100 POINTs, S = 1 and G = 1, and you choose to give 2
|
|
to the association:
|
|
<br> {% formfield player.r1 label = "Your gain is (in POINTs)"%}
|
|
{% formfield player.r2 label = "You donate to the association (in POINTs)"%}
|
|
|
|
<br> Q2. If your starting amount is 60 POINTs, S = 2 and G = 1, and you choose to give 5
|
|
to the association:
|
|
|
|
<br> {% formfield player.r3 label = "Your gain is (in POINTs) "%}
|
|
{% formfield player.r4 label = "You donate to the association (in POINTs)"%}
|
|
|
|
{% next_button %}
|
|
|
|
{% endblock %}
|