from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class MyPage(Page): form_model = 'player' form_fields = ['name', 'age', 'blood', 'gender'] class Q7A1(Page): form_model = 'player' form_fields = ['q7a1'] class Q7A2(Page): form_model = 'player' form_fields = ['q7a2'] class Q7B1(Page): form_model = 'player' form_fields = ['q7b1'] class Q7B2(Page): form_model = 'player' form_fields = ['q7b2'] class Q7C1(Page): form_model = 'player' form_fields = ['q7c1'] class Results(Page): pass page_sequence = [ MyPage, Q7A1, Q7A2, Q7B1, Q7B2, Q7C1, Results ]