from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range ) author = 'Stephen Nei' doc = """ A screening app to gather consent from participants. Overall experiment description: Look at how subjects respond to costs when gathering information from others. Subjects will be guessing the contents of a "bag" of "marbles" They will receive private signals in the form of draws from the bag. They will have the chance to exchange information with other participants. Depending on the treatment, they will either have to pay for this opportunity before receiving their signal, after receiving their signal, or not at all. Goals are to see if: 1) Subjects respond to costs (eg pay cost when signal is weak, don't when signal is strong) 2) Subjects recognize other agents are doing this (eg respond more weakly when costs are introduced) """ class Constants(BaseConstants): name_in_url = 'selection_experiment_part1_consent' players_per_group = None num_rounds = 1 instructions_template = 'selection_experiment_part1_consent/instructions.html' base_payment = c(50) additional_payment = c(10) class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass