from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class QuestionnairePage01(Page): form_model = "player" form_fields = [ "Birth", "gender", "PlaceOfResidence", "religion", "school", "doingmoment", "IndustryWork", "family", "children", "place", "residence", "health", "conditions", "activities", ] class QuestionnairePage1(Page): form_model = "player" form_fields = ["va1", "va2", "va3", "va4"] class QuestionnairePage2(Page): form_model = "player" form_fields = [ "to1", "to2", "to3", "to4", "to5", "to6", "to7", "to8", "to9", "to10", "to11", "to12", "to13", "to14", "to15", ] class QuestionnairePage3(Page): form_model = "player" form_fields = [ "time1", "time2", "time3", "time4", "time5", "time6", "time7", "time8", "time9", "time10", "time11", "time12", "time13", "time14", "time15", "time16", "time17", "time18", "time19", ] class QuestionnairePage31(Page): form_model = "player" form_fields = ["bf1", "bf2", "bf3", "bf4", "bf5", "bf6", "bf7", "bf8", "bf9", "bf10"] class QuestionnairePage4(Page): form_model = "player" form_fields = ["robottext"] page_sequence = [ QuestionnairePage01, QuestionnairePage1, QuestionnairePage2, QuestionnairePage3, QuestionnairePage31, QuestionnairePage4, ]