from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Demographics(Page): form_model = 'player' form_fields = ['gender', 'age', 'educ', 'income', 'sector', 'nationality'] class SlidersSlidersSliders(Page): form_model = 'player' form_fields = ['afford'] class Treatment_Page(Page): form_model = 'player' form_fields = ['investment', 'pay', 'car', 'price_gas'] class LastPage(Page): form_model = 'player' form_fields = ['employer'] class LastLastPage(Page): form_model = 'player' form_fields = ['choice1', 'choice2', 'choice3', 'choice4', 'choice5', 'choice6', 'choice7'] page_sequence = [Demographics, SlidersSlidersSliders, Treatment_Page, LastPage, LastLastPage]