{% load otree %}

There is one more important detail: We might or might not tell John whether the book he gets is the one with the original or fake note.


{{ if participant.switch_order }}
Case 1: we WILL tell John whether the book he got is the one with the original or fake note
{{ if participant.treatment == 'high'}} With a {{ C.MS }}% chance, John will get the book with the original note, and with a {{one_minus_MS}}% chance, you will determine which book he gets. {{ elif participant.treatment == 'low'}} With a {{ C.MS }}% chance, John will get the book with the fake note, and with a {{one_minus_MS}}% chance, you will determine which book he gets. {{endif}}
Case 2: we WILL NOT tell John whether the book he got is the one with the original or fake note
{{ if participant.treatment == 'high'}} With a {{ C.MS }}% chance, John will get the book with the original note, and with a {{one_minus_MS}}% chance, you will determine which book he gets. {{ elif participant.treatment == 'low'}} With a {{ C.MS }}% chance, John will get the book with the fake note, and with a {{one_minus_MS}}% chance, you will determine which book he gets. {{endif}}
{{ else }}
Case 1: we WILL NOT tell John whether the book he got is the one with the original or fake note
{{ if participant.treatment == 'high'}} With a {{ C.MS }}% chance, John will get the book with the original note, and with a {{one_minus_MS}}% chance, you will determine which book he gets. {{ elif participant.treatment == 'low'}} With a {{ C.MS }}% chance, John will get the book with the fake note, and with a {{one_minus_MS}}% chance, you will determine which book he gets. {{endif}}
Case 2: we WILL tell John whether the book he got is the one with the original or fake note
{{ if participant.treatment == 'high'}} With a {{ C.MS }}% chance, John will get the book with the original note, and with a {{one_minus_MS}}% chance, you will determine which book he gets. {{ elif participant.treatment == 'low'}} With a {{ C.MS }}% chance, John will get the book with the fake note, and with a {{one_minus_MS}}% chance, you will determine which book he gets. {{endif}}
{{ endif }}

We ask you to make your choices for each case. {{ if incentivized }}We will then choose a case randomly and implement that case.{{ endif }}