from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Demo(Page): form_model = 'player' form_fields = ['age', 'gender', 'residence', 'town_birth', 'education', 'religious', 'work', 'mother_birthplace', 'father_birthplace', 'elementary'] class Trust(Page): form_model = 'player' form_fields = ['association', 'important_ass', 'close_friends', 'people_borrow', 'trust', 'trust_ethn', 'trust_otherethn', 'trust_officier', 'trust_governoffic', 'trust_police', 'trust_teachers', 'trust_strangers', 'variety_neigh', 'help', 'money', 'timepg', 'meeting', 'politician', 'protest', 'campaign', 'altered', 'notified', 'hosted', 'vote', 'blood', 'benefits', 'fare', 'tax', 'bribe', 'corruption'] class Open(Page): form_model = 'player' form_fields = ['instruction', 'strategy', 'theme'] page_sequence = [Demo, Trust, Open]