first commit

This commit is contained in:
duartegoncalvesds 2026-03-12 21:05:38 +00:00
commit 73fc2121bf
30 changed files with 13308 additions and 0 deletions

30
Task1/TaskIntro.html Normal file
View file

@ -0,0 +1,30 @@
{{ extends "_static/global/Page.html" }}
{{ load otree static }}
{{ block title }}
Main Task
{{ endblock }}
{{ block content }}
<div>
{{ if player.practice == 1}}
<p>
You will now have {{C.NUM_PRACTICE_ROUNDS}} practice round{{ if C.NUM_PRACTICE_ROUNDS > 1 }}s{{ endif }} to familiarise yourself with the study.
<br>
You will receive feedback after your choices.
<br>
You will not be paid for {{ if C.NUM_PRACTICE_ROUNDS == 1 }}this round{{ endif }}{{ if C.NUM_PRACTICE_ROUNDS > 1 }}these rounds{{ endif }}.
</p>
{{ endif }}
{{ if player.practice == 0}}
<p>
You will now make choices {{ C.NUM_PAYMENT_ROUNDS }} rounds.<br>
One of these rounds will be randomly selected to <b>determine your bonus payment</b> at the end of the task. <br>
You will not receive feedback.
</p>
{{ endif }}
</div>
<div style="justify-content: center; align-items: center; text-align: center;">
{{ next_button }}
</div>
{{ endblock }}