e4c_expe2/a5_survey/templates/a5_survey/Questionnaire5.html
Johanne Trotin 981d06d34c Expé E4C v6
2025-03-30 12:32:15 +02:00

144 lines
4.5 KiB
HTML

{% load otree %}
{% block title %}
Questionnaire
{% endblock %}
{% block content %}
<div class="card bg-light m-3">
<div class="card-body">
In this part, you are asked to compare the decisions made in the four tasks in Part 1 and to answer questions about specific decisions made in each task.
<br>
To do this, you are first briefly reminded of the tasks by examining a summary of the corresponding instructions.
For answering the questions in Part 2 carefully and truthfully, <b>you will receive €3.00.</b>
<br>
Each game will be given a colour so that you can recognise it later in the questionnaire:
<br>
<b style="color:orange";> Task "orange" </b>, <b style="color:blue";> Task "blue" </b>,
<b style="color:green";> Task "green" </b> and
<b style="color:red";> Task "red" </b>.
</div></div>
<div class="card bg-light instructions">
<div class="card-body">
{% if player.app_sequence_select == 1%}
<h1> Game 1: <b style="color:orange";> Task "orange" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_GP_template %}
</div></div>
<br>
<h1> Game 2: <b style="color:blue";> Task "blue" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_bw_template%}
</div></div>
<br>
<h1> Game 3: <b style="color:green";> Task "green" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_DAS_template %}
</div></div>
<br>
<h1> Game 4: <b style="color:red";> Task "red" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_DCL_template %}
</div></div>
{% elif player.app_sequence_select == 2%}
<h1> Game 1: <b style="color:orange";> Task "orange" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_GP_template %}
</div></div>
<br>
<h1> Game 2: <b style="color:blue";> Task "blue" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_bw_template%}
</div></div>
<br>
<h1> Game 3: <b style="color:green";> Task "green" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_DCL_template %}
</div></div>
<br>
<h1> Game 4: <b style="color:red";> Task "red" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_DAS_template %}
</div></div>
{% elif player.app_sequence_select == 3%}
<h1> Game 1: <b style="color:orange";> Task "orange" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_bw_template%}
</div></div>
<br>
<h1> Game 2: <b style="color:blue";> Task "blue" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_GP_template %}
</div></div>
<br>
<h1> Game 3: <b style="color:green";> Task "green" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_DAS_template %}
</div></div>
<br>
<h1> Game 4: <b style="color:red";> Task "red" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_DCL_template %}
</div></div>
{% elif player.app_sequence_select == 4%}
<h1> Game 1: <b style="color:orange";> Task "orange" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_bw_template%}
</div></div>
<br>
<h1> Game 2: <b style="color:blue";> Task "blue" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_GP_template %}
</div></div>
<br>
<h1> Game 3: <b style="color:green";> Task "green" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_DCL_template %}
</div></div>
<br>
<h1> Game 4: <b style="color:red";> Task "red" </b> </h1>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_DAS_template %}
</div></div>
{% endif %}
<br>
{% next_button %}
<br>
</div></div>
{% endblock %}