{% load otree %}

There is one more important detail: We might or might not tell Alex whether the two books he gets are the ones with the original or fake notes.


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

We ask you to make your choices for each case. We will then choose a case randomly and implement that case.