30 lines
No EOL
1 KiB
HTML
30 lines
No EOL
1 KiB
HTML
{{ 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 }} |